Billing & Payments

@if (session()->has('message'))
{{ session('message') }}
@endif
@forelse ($bills as $bill) @empty @endforelse
Bill # Patient Amount Status Due Date Actions
{{ $bill->bill_number }} {{ $bill->patient->full_name }} ₦{{ number_format($bill->total_amount, 2) }} {{ ucfirst($bill->status) }} {{ $bill->due_date->format('M d, Y') }}
No bills found
{{ $bills->links() }}
@if($showCreateModal)

New Bill

@if(count($searchResults) > 0 && !$patient_id)
@foreach($searchResults as $patient) @endforeach
@endif
@if($patient_id)
✓ Patient selected
@endif
@endif @if($showPaymentModal && $selectedBill)

Process Payment

Bill: {{ $selectedBill->bill_number }}

Total: ₦{{ number_format($selectedBill->total_amount, 2) }}

Balance: ₦{{ number_format($selectedBill->balance, 2) }}

@endif