@section('page-title', 'Provider Analysis Report')

Provider Analysis Report

Provider billing patterns and claim volumes

← All Reports
Reset

Active Providers

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

Total Billed

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

Total Awarded

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

Avg Payment Ratio

{{ $summary['avg_payment_ratio'] }}%

@if($byProviderType->isNotEmpty())

Providers by Type

@foreach($byProviderType as $pt)

{{ $pt->provider_type }}

{{ $pt->provider_count }}

@endforeach
@endif

Provider Claims Detail

@forelse($providers as $provider) @php $billed = ($provider->claims_sum_total_billed_cents ?? 0) / 100; $awarded = ($provider->claims_sum_total_awarded_cents ?? 0) / 100; $ratio = $billed > 0 ? round(($awarded / $billed) * 100, 1) : 0; @endphp @empty @endforelse
Provider Type Network Claims Total Billed Total Awarded Payment Ratio
{{ $provider->name }} {{ $provider->provider_type }} {{ ucfirst(str_replace('_', ' ', $provider->network_status)) }} {{ $provider->claims_count }} ${{ number_format($billed, 2) }} ${{ number_format($awarded, 2) }}
{{ $ratio }}%
No provider claims data for the selected period.
{{ $providers->links() }}