Batch: {{ $batch->batch_number }}
Date: {{ $batch->paid_at?->format('d F Y') ?? now()->format('d F Y') }}
{{ $batch->provider->name ?? 'N/A' }}
Practice #: {{ $batch->provider->practice_number ?? 'N/A' }}
{{ ucfirst(str_replace('_', ' ', $batch->provider->provider_type ?? '')) }}
Reference: {{ $batch->payment_reference }}
Method: {{ strtoupper($batch->payment_method) }}
Currency: {{ $batch->currency }}
Claims Count: {{ $batch->claim_count }}
| Claim # | Member | Service Date | Type | Billed | Awarded |
|---|---|---|---|---|---|
| {{ $claim->claim_number }} | {{ $claim->member->full_name ?? 'N/A' }} | {{ $claim->service_date->format('d M Y') }} | {{ ucfirst($claim->claim_type) }} | ${{ number_format($claim->total_billed_cents / 100, 2) }} | ${{ number_format($claim->total_awarded_cents / 100, 2) }} |
| Total | ${{ number_format($totalBilled / 100, 2) }} | ${{ number_format($totalAwarded / 100, 2) }} | |||