@foreach($reimburses as $index => $reimburse)
FORM REIMBURSE
KAMPUS {{ strtoupper($reimburse->kampus->nama_kampus ?? 'N/A') }}
No. Reimburse : R-{{ str_pad($reimburse->id, 5, '0', STR_PAD_LEFT) }} Tanggal Pengajuan : {{ \Carbon\Carbon::parse($reimburse->created_at)->format('d F Y') }}
Pemohon : {{ $reimburse->user->name ?? 'N/A' }} Status : {{ strtoupper($reimburse->status) }}
Departemen/Divisi : HRIS Tanggal Biaya : {{ \Carbon\Carbon::parse($reimburse->date)->format('d F Y') }}
No Keterangan Biaya Nominal (Rp) Lampiran
1 {{ $reimburse->description }} {{ number_format($reimburse->amount, 0, ',', '.') }} {{ $reimburse->attachment ? 'Ada' : 'Tidak Ada' }}
Total {{ number_format($reimburse->amount, 0, ',', '.') }}
@if($reimburse->approval_notes)
Catatan Approval:
{{ $reimburse->approval_notes }}
@endif

Dibuat Oleh,

{{ $reimburse->user->name ?? 'N/A' }}
Pemohon

Disetujui Oleh,

{{ $reimburse->approver->name ?? '(...................................)' }}
Keuangan
@if(!$loop->last)
@endif @endforeach