Revenue Stats

Financial performance across departments

@if($dateRange === 'custom')
to
@endif

Total Collection

₹{{ number_format($totalRevenue, 2) }}

{{ $totalBills }} SETTLED INVOICES

Net Discount

₹{{ number_format($totalDiscount, 2) }}

Tax Collected

₹{{ number_format($totalTax, 2) }}

Calculated GST/VAT

Avg. Ticket Size

₹{{ $totalBills > 0 ? number_format($totalRevenue / $totalBills, 2) : '0.00' }}

per patient visit

@forelse($departmentSplit as $dept)
{{ $dept['item_type'] }}
₹{{ number_format($dept['total'], 2) }}
@empty

No departmental data.

@endforelse
@forelse($paymentMethodSplit as $method)

{{ $method['payment_method'] ?: 'Other' }}

₹{{ number_format($method['total'] / 1000, 1) }}k

@empty

No payment data.

@endforelse
@forelse($visitTypeSplit as $type)
{{ $type->visit_type ?: 'New' }} {{ $type->count }} Visits

₹{{ number_format($type->total, 0) }}

@empty

No consultation data.

@endforelse
Bill Details Patient Amount Method Time @forelse($recentBills as $bill) {{ $bill->bill_number }}
{{ $bill->patient->full_name }} {{ $bill->patient->uhid }}
₹{{ number_format($bill->total_amount, 2) }} {{ $bill->payment_method }} {{ $bill->created_at->diffForHumans() }} @empty @endforelse