Patients

Search and manage patient records

@if (app(\App\Services\Care\CarePermissions::class)->can(auth()->user() ? app(\App\Services\Care\OrganizationResolver::class)->memberFor(auth()->user(), $organization) : null, 'patients.manage')) Register patient @endif
@if (request()->hasAny(['q', 'date_of_birth', 'phone', 'national_id', 'patient_number'])) Clear @endif
@forelse ($patients as $patient) @empty @endforelse
Patient Patient ID Phone DOB Branch

{{ $patient->fullName() }}

@if ($patient->national_id)

NID: {{ $patient->national_id }}

@endif
{{ $patient->patient_number }} {{ $patient->phone ?? '—' }} {{ $patient->date_of_birth?->format('Y-m-d') ?? '—' }} {{ $patient->branch?->name ?? '—' }} View
No patients found.
{{ $patients->links() }}