@extends("layouts.app", ["title" => "Patients (EHR) List"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Healthcare", "title" => "Electronic Health Records (EHR)"])

System Patient Records

Add Patient Profile
Clear
@forelse ($patients as $pat) @empty @endforelse
Patient Name National ID Gender Age (DOB) Household Family Actions
{{ $pat->name }} {{ $pat->national_id ?? 'N/A' }} {{ ucfirst($pat->gender) }} {{ $pat->date_of_birth->age }} years ({{ $pat->date_of_birth->format('Y-m-d') }}) {{ $pat->family->name }} EHR Profile
@csrf @method('DELETE')
No patients found.
{{ $patients->links() }}
@endsection