View and process medical claims
| Claim # | Member | Provider | Type | Billed | Awarded | Status | Service Date | Source | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $claim->claim_number }} | {{ $claim->member->full_name ?? 'N/A' }} | {{ $claim->provider->name ?? 'N/A' }} | {{ $claim->claim_type }} | ${{ 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') }} | @if($claim->source === 'health263') H263 @elseif($claim->source === 'api') API @else Manual @endif | @if(in_array($claim->status, ['received', 'processing'])) @endif |
| No claims found. | |||||||||