@section('page-title', 'Loss Ratio Report')

Loss Ratio Report

IPEC — Premiums collected vs claims paid

← Regulatory Reports
Export CSV

Total Premiums

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

Total Claims Paid

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

Loss Ratio

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

Net Position

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

Monthly Premiums vs Claims

@if($monthlyData->count() > 0)
@foreach($monthlyData as $row)
{{ $row['month'] }} Loss Ratio: {{ $row['loss_ratio'] }}%
@php $maxVal = max($row['premiums'], $row['claims'], 1); @endphp

Premiums: ${{ number_format($row['premiums'], 2) }}

Claims: ${{ number_format($row['claims'], 2) }}

@endforeach
@else

No data available for the selected period.

@endif

Claims by Type

@if($claimsByType->count() > 0)
@foreach($claimsByType as $row) @endforeach
Type Count Total Awarded
{{ ucfirst($row->claim_type) }} {{ number_format($row->count) }} ${{ number_format($row->total_awarded / 100, 2) }}
@else

No claims data available for the selected period.

@endif