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

Claims Summary Report

Claims analysis by date range, type, status and provider

← All Reports
Reset

Total Claims

{{ number_format($summary['total_claims']) }}

Total Billed

${{ number_format($summary['total_billed'], 2) }}

Total Awarded

${{ number_format($summary['total_awarded'], 2) }}

Total Shortfall

${{ number_format($summary['total_shortfall'], 2) }}

By Status

@foreach($byStatus as $item)
{{ str_replace('_', ' ', $item->status) }}
{{ $item->count }} claims ${{ number_format(($item->total_awarded ?? 0) / 100, 2) }}
@endforeach @if($byStatus->isEmpty())

No data for selected period.

@endif

By Type

@foreach($byType as $item)
{{ $item->claim_type }}
{{ $item->count }} claims ${{ number_format(($item->total_billed ?? 0) / 100, 2) }} billed ${{ number_format(($item->total_awarded ?? 0) / 100, 2) }} awarded
@endforeach @if($byType->isEmpty())

No data for selected period.

@endif

Claims Detail

@forelse($claims as $claim) @empty @endforelse
Claim # Member Provider Type Billed Awarded Status Service Date
{{ $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') }}
No claims found for the selected period.
{{ $claims->links() }}