@extends('layouts.app') @section('title','Patient Transactions') @section('content')
| Patient | MRN | Visit | Payer | Billed | Paid | Balance | Date |
|---|---|---|---|---|---|---|---|
| {{ $inv->patient->full_name ?? '' }} | {{ $inv->patient->mrn ?? '' }} | {{ $inv->visit->visit_number ?? '' }} | {{ $inv->payment_mode }} | {{ number_format($inv->total_amount) }} | {{ number_format($inv->amount_paid) }} | {{ number_format($inv->balance) }} | {{ $inv->created_at->format('d M Y') }} |
| No transactions found. | |||||||