@section('page-title', 'Claims')

Claims Management

View and process medical claims

@if(!\App\Models\FeatureFlag::isEnabled('export_controls') || auth()->user()->can('export_financial_data')) Export CSV @endif @can('create_claims') Submit Claim @endcan
Reset
@forelse($claims as $claim) @empty @endforelse
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']))
@csrf
@endif
No claims found.
{{ $claims->links() }}