Executive Financial Report & Revenue Audit
Total fees collected, outstanding treatment balances, and projected upcoming fees.
{{ now()->startOfMonth()->format('d M Y') }} - {{ now()->endOfMonth()->format('d M Y') }}
TOTAL FEES COLLECTED
{{ $cur }}{{ number_format($summary['paid'],2) }}
TOTAL DUES PENDING
{{ $cur }}{{ number_format($summary['outstanding'],2) }}
NEXT MONTH EXPECTED
{{ $cur }}{{ number_format($summary['next_expected'],2) }}
TOTAL TREATMENT VALUE
{{ $cur }}{{ number_format($summary['billed'],2) }}
Service-wise Revenue (Clinical Disease / Diagnosis)
| Name | Treatments | Revenue |
|---|---|---|
| {{ $r->name }} | {{ $r->c }} | {{ $cur }}{{ number_format($r->rev,0) }} |
| No data. | ||
Doctor-wise Revenue
| Doctor | Revenue |
|---|---|
| {{ $r->name }} | {{ $cur }}{{ number_format($r->rev,0) }} |
| No data. | |
Department-wise Revenue
| Department | Revenue |
|---|---|
| {{ $r->name }} | {{ $cur }}{{ number_format($r->rev,0) }} |
| No data. | |
Revenue Audit — Payment Methods
| Method | Count | Total |
|---|---|---|
| {{ strtoupper($r->method) }} | {{ $r->c }} | {{ $cur }}{{ number_format($r->total,0) }} |
| No data. | ||
Recent Part-Payment Receipts
| Receipt | Patient | Amount | Method | Recorded By | Date |
|---|---|---|---|---|---|
| {{ $p->receipt_no }} | {{ $p->patient?->full_name ?? '—' }} | {{ $cur }}{{ number_format($p->amount,2) }} | {{ strtoupper($p->method) }} | {{ $p->collectedBy?->name ?? '—' }} | {{ $p->payment_date->format('d M Y') }} |
| No payments recorded. | |||||