{{ __('Reimbursement Details') }}

Reimbursement Details

Below are the details of the reimbursement request.

@if ($reimbursement->status === 'pending') @endif
Code {{ $reimbursement->code }}
Employee ID {{ $reimbursement->employee->fullname }}
Reimbursement Type {{ $reimbursement->reimbursementType->name }}
Title {{ $reimbursement->title }}
Description {{ $reimbursement->description }}
Amount {{ number_format($reimbursement->amount, 2) }}
Attachments @if ($reimbursement->attachment) {{ basename($reimbursement->attachment) }}
@else No attachments @endif
Status @if ($reimbursement->status === 'approved') Approved @elseif ($reimbursement->status === 'pending') Pending @elseif ($reimbursement->status === 'rejected') Rejected @endif
Approved At {{ $reimbursement->approved_at ? \Carbon\Carbon::parse($reimbursement->approved_at)->diffForHumans() : '-' }}