Manage patient records and information
| Patient ID @if($sortBy === 'patient_id') @if($sortDirection === 'asc') ↑ @else ↓ @endif @endif | Name @if($sortBy === 'first_name') @if($sortDirection === 'asc') ↑ @else ↓ @endif @endif | Phone | Age | Registered @if($sortBy === 'created_at') @if($sortDirection === 'asc') ↑ @else ↓ @endif @endif | Actions | |
|---|---|---|---|---|---|---|
| {{ $patient->patient_id }} | {{ $patient->full_name }} | {{ $patient->email ?? 'N/A' }} | {{ $patient->phone ?? 'N/A' }} | {{ $patient->age }} years | {{ $patient->created_at->format('M d, Y') }} | |
| @if($search) No patients found matching "{{ $search }}" @else No patients registered yet. @if(!auth()->user()->isDoctor()) @endif @endif | ||||||
{{ $selectedPatientForVisit->full_name }}
ID: {{ $selectedPatientForVisit->patient_id }}