| # | {{ __('Employee') }} | {{ __('Branch') }} | {{ __('Department') }} | {{ __('Loan') }} | {{ __('Inst #') }} | {{ __('Due') }} | {{ __('Principal') }} | {{ __('S/Charge') }} | {{ __('Total') }} | {{ __('Status') }} | {{ __('Paid on') }} |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $staff?->user?->name ?? '—' }}
{{ $staff?->user?->id }}
|
{{ $staff?->warehouse?->name ?? '—' }} | {{ $staff?->department?->name ?? '—' }} | #{{ $inst->loan?->id }} | {{ $inst->installment_no }} | {{ $dueLabel }} | {{ number_format($principal, 2) }} | {{ number_format($charge, 2) }} | {{ number_format($rowTotal, 2) }} | {{ FundLoanFilterService::installmentStatusLabel($status) }} | {{ $inst->paid_at?->format('Y-m-d') ?? '—' }} |
| {{ __('No records') }} | |||||||||||
| {{ __('Totals') }} | {{ number_format($totalPrincipal, 2) }} | {{ number_format($totalCharge, 2) }} | {{ number_format($totalAmount, 2) }} | ||||||||