{{ $member->member_number }} | {{ ucfirst($member->member_type) }}
{{ $lastPmt->paid_at?->format('d M Y') ?? 'Date unknown' }}
{{ $nextDue->lt(now()->startOfMonth()) ? 'Overdue' : 'Due 1 ' . $nextDue->format('F Y') }}
{{ $dep->full_name }}
{{ ucfirst($dep->member_type) }} | {{ $dep->date_of_birth->format('d M Y') }}
@endforeach @if($member->dependants->count() === 0)No dependants registered.
@endif{{ $usage->getUtilizationPercentage() }}% utilized | Available: ${{ number_format($usage->getAvailableCents() / 100, 2) }}
{{ $chronic->condition_name }} ({{ $chronic->icd10_code }})
Approved: {{ $chronic->approved_date?->format('d M Y') ?? 'Pending' }} | Expires: {{ $chronic->expiry_date?->format('d M Y') ?? 'N/A' }}
Limit: ${{ number_format(($chronic->chronic_limit_cents ?? 0) / 100, 2) }} | Used: ${{ number_format($chronic->chronic_used_cents / 100, 2) }} | Can Refill: {{ $chronic->canRefill() ? 'Yes' : 'No (wait ' . (28 - $chronic->last_refill_date?->diffInDays(now())) . ' days)' }}
| Claim # | Provider | Billed | Awarded | Status | Date |
|---|---|---|---|---|---|
| {{ $claim->claim_number }} | {{ $claim->provider->name ?? 'N/A' }} | ${{ number_format($claim->total_billed_cents / 100, 2) }} | ${{ number_format($claim->total_awarded_cents / 100, 2) }} | {{ ucfirst(str_replace('_', ' ', $claim->status)) }} | {{ $claim->service_date->format('d M Y') }} |
| No claims history. | |||||