{{ $provider->name }} - Total Paid: ${{ number_format($totalPaid / 100, 2) }}
| Batch # | Amount | Currency | Claims | Method | Reference | Status | Paid Date |
|---|---|---|---|---|---|---|---|
| {{ $batch->batch_number }} | ${{ number_format($batch->total_amount_cents / 100, 2) }} | {{ $batch->currency ?? 'USD' }} | {{ $batch->claim_count }} | {{ strtoupper($batch->payment_method ?? 'N/A') }} | {{ $batch->payment_reference ?? 'N/A' }} | {{ ucfirst($batch->status) }} | {{ $batch->paid_at ? $batch->paid_at->format('d M Y') : 'N/A' }} |
| No payment batches found. | |||||||
| Claim # | Member | Type | Billed | Awarded | Reference | Method | Paid Date |
|---|---|---|---|---|---|---|---|
| {{ $claim->claim_number }} | {{ $claim->member->first_name ?? '' }} {{ $claim->member->last_name ?? '' }} | {{ ucfirst($claim->claim_type) }} | ${{ number_format($claim->total_billed_cents / 100, 2) }} | ${{ number_format(($claim->total_awarded_cents ?? 0) / 100, 2) }} | {{ $claim->payment_reference ?? 'N/A' }} | {{ strtoupper($claim->payment_method ?? 'N/A') }} | {{ $claim->paid_at ? $claim->paid_at->format('d M Y') : 'N/A' }} |
| No paid claims found. | |||||||