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

Finance Overview

Financial summary, exchange rates and benefit utilization

Total Billed

${{ number_format($totalBilled, 2) }}

Total Awarded

${{ number_format($totalAwarded, 2) }}

Total Shortfall

${{ number_format($totalShortfall, 2) }}

Paid Claims

${{ number_format($paidClaims, 2) }}

Claims by Type

@foreach($claimsByType as $ct)
{{ $ct->claim_type }}
{{ $ct->count }} claims ${{ number_format(($ct->total ?? 0) / 100, 2) }}
@endforeach

Exchange Rates

@foreach($exchangeRates as $rate) @endforeach
From To Rate Date
{{ $rate->from_currency }} {{ $rate->to_currency }} {{ number_format($rate->rate, 4) }} {{ $rate->effective_date->format('d M Y') }}

Top Benefit Utilization ({{ date('Y') }})

@foreach($benefitUsage as $usage) @endforeach
Member Category Limit Used Utilization
{{ $usage->member->full_name ?? 'N/A' }} {{ $usage->benefit_category }} ${{ number_format($usage->limit_cents / 100, 2) }} ${{ number_format($usage->used_cents / 100, 2) }}
{{ $usage->getUtilizationPercentage() }}%