@extends('layouts.app') @section('title', 'Patient Reports') @section('content')
| Serial | Name | Phone | Visits | ||
|---|---|---|---|---|---|
| {{ $p->serial_number }} | {{ $p->name }} | {{ $p->phone ?? '—' }} | {{ $p->visits->count() }} | ||
| No matching patients. | |||||
| Patient | Doctor | Visit Date | Follow-up Date | Status | |
| {{ $v->patient->name ?? '—' }} | {{ $v->doctor_name ?? '—' }} | {{ $v->visit_date->format('d M Y') }} | {{ $v->follow_up_date->format('d M Y') }} | {{ $v->statusLabel() }} | |
| No follow-ups in this range. | |||||
| Patient | Visit Date | Doctor | Slip | ||
| {{ $v->patient->name ?? '—' }} | {{ $v->visit_date->format('d M Y') }} | {{ $v->doctor_name ?? '—' }} | View | ||
| No prescription uploads in this range. | |||||
| Patient | Serial | Visit Date | Doctor | Disease | Status |
| {{ $v->patient->name ?? '—' }} | {{ $v->patient->serial_number ?? '—' }} | {{ $v->visit_date->format('d M Y') }} | {{ $v->doctor_name ?? '—' }} | {{ $v->disease ?? '—' }} | {{ $v->statusLabel() }} |
| No visits in this range. | |||||