@extends('layouts.app') @section('title', 'Claims Aging Report') @section('content')
| Claim # | Company | Patient | Amount | Submitted | Aging | Status |
|---|---|---|---|---|---|---|
| {{ $c->claim_number }} | {{ $c->insuranceCompany->name ?? '' }} | {{ $c->patient->full_name ?? '' }} | KES {{ number_format($c->claim_amount) }} | {{ $c->submission_date?->format('d M') ?? '-' }} | {{ $c->aging_days }}d | {{ ucfirst($c->status) }} |