@extends('layouts.app') @section('title', 'Receivables') @section('content')
Total Outstanding
KES {{ number_format($total) }}
| Invoice | Patient | Total | Paid | Balance | Mode | Date |
|---|---|---|---|---|---|---|
| {{ $i->invoice_number }} | {{ $i->patient->full_name ?? '' }} | {{ number_format($i->total_amount) }} | {{ number_format($i->amount_paid) }} | {{ number_format($i->balance) }} | {{ $i->payment_mode }} | {{ $i->created_at->format('d M') }} |