@extends('layouts.app') @section('title', 'View Bills') @section('content')
Today's Collections
KES {{ number_format($todayTotal) }}
| Invoice # | Patient | Date | Mode | Total | Paid | Balance | Status |
|---|---|---|---|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->patient->full_name ?? '' }} | {{ $inv->created_at->format('d M') }} | {{ $inv->payment_mode }} | {{ number_format($inv->total_amount) }} | {{ number_format($inv->amount_paid) }} | {{ number_format($inv->balance) }} | {{ ucfirst($inv->status) }} |
| No invoices. | |||||||