Patient Details
Complete patient information, medical history, prescriptions and payment details.
{{ strtoupper(substr($patient->full_name,0,1)) }}
{{ $patient->full_name }}
{{ ucfirst($patient->crm_status) }}Blood Group{{ $patient->blood_group ?? '—' }}
Allergies{{ $patient->allergies ? implode(', ', $patient->allergies) : 'No Known' }}
Phone:{{ $patient->phone }}
Email:{{ $patient->email ?? '—' }}
City:{{ $patient->city ?? '—' }}
Assigned Doctor:{{ $patient->assignedDoctor?->name ?? '—' }}
Outstanding Balance:{{ $cur }}{{ number_format($due,2) }}
Customer Labels & Groups
Patient Visit History & Recall Schedule
Last Visit Date{{ $patient->last_visit_date?->format('Y-m-d') ?? '—' }}Procedure: {{ $lastAppt?->diagnosis?->name ?? '—' }}
Follow-Up / Recall Date{{ $patient->followup_date?->format('Y-m-d') ?? '—' }} Scheduled Recall
Payment Profile & Part-Payments
Patient ledger & installment trackingTotal Billed{{ $cur }}{{ number_format($billed,2) }}
Paid So Far{{ $cur }}{{ number_format($paid,2) }}
Balance Due{{ $cur }}{{ number_format($due,2) }}
Patient Prescription Data
| Rx Code | Doctor | Date | |
|---|---|---|---|
| {{ $rx->code }} | {{ $rx->doctor?->name ?? '—' }} | {{ $rx->prescribed_on?->format('d M Y') }} | Print Rx |
| No prescriptions yet. | |||
Appointments
| Ref | Date | Clinical Disease / Diagnosis | Doctor | Status |
|---|---|---|---|---|
| {{ $a->code }} | {{ $a->appointment_date->format('d M Y') }} | {{ $a->diagnosis?->name ?? $a->reason ?? '—' }} | {{ $a->doctor?->name ?? '—' }} | {{ strtoupper(str_replace('_',' ',$a->status)) }} |
| No appointments. | ||||