@extends('layouts.app') @section('title', 'Patient Records') @section('actions') New Patient @endsection @section('content') {{-- ---------------- Daily fee summary ---------------- --}}
| Serial No. | Name | Phone | City | Area | Fee | Received | Remaining | Discount | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $patient->serial_number }} | {{ $patient->name }} | {{ $patient->phone ?? '—' }} | {{ $patient->city ?? '—' }} | {{ $patient->area ?? '—' }} | {{ number_format($patient->patient_fee, 0) }} | {{ number_format($patient->received_fee, 0) }} | {{ number_format($patient->remaining_fee, 0) }} | {{ number_format($patient->discount_fee, 0) }} | |
| No patients found. | |||||||||