@extends('layouts.admin') @section('page_kicker', 'Finance') @section('page_title', 'Billing & payments') @section('content')
Bill a patient profile with due date.
Track cash and mobile payments via invoice status.
Total invoices: {{ $invoices->total() }}
Paid: {{ $invoices->getCollection()->where('status', 'paid')->count() }}
Outstanding and settled bills.
| ID | Patient | Amount | Status | Due at |
|---|---|---|---|---|
| {{ $invoice->id }} | {{ $invoice->patientProfile->user->name ?? 'N/A' }} | {{ $invoice->currency }} {{ $invoice->amount }} | {{ $invoice->status }} | {{ $invoice->due_at }} |