| Bill Ref No | Bill Type | Amount Paid |
|---|---|---|
| {{ $item->BillRefNo ?? '-' }} | {{ strpos($item->BillRefNo ?? '', 'AB') === 0 ? 'Assessment' : 'Service Bill' }} | ₦{{ number_format($item->PaidAmount ?? 0, 2) }} |
| Total: | ₦{{ number_format($items->sum(fn($i) => $i->PaidAmount ?? 0), 2) }} | |