@extends('layouts.admin') @section('title', 'Patients') @section('content')
Search by name, DOB, email, or exact MRN.
| Patient | DOB | PCP | BHCM | Status | |
|---|---|---|---|---|---|
|
{{ $patient->user->name }} {{ $hasPatientEmail ? $patientEmail : 'Email not provided' }} |
{{ $patient->date_of_birth?->format('M j, Y') ?? 'โ' }} | {{ $patient->pcp?->name ?? 'โ' }} | {{ $patient->bhcm?->name ?? 'โ' }} | {{ str_replace('_', ' ', $patient->co_cm_status) }} | @can('view', $patient) Open @elsecan('kioskHandoff', $patient) Launch kiosk @endcan |
| No patients found. | |||||
Patient registration
Add the patient to your practice so they can begin screening.
{{ $errors->has('possible_duplicate') ? 'Possible existing patient found.' : 'Please fix the highlighted fields.' }}
{{ $errors->first() }}
@if ($duplicate = session('possible_duplicate_patient')){{ $duplicate['name'] }}
DOB {{ $duplicate['dob'] }} ยท {{ $duplicate['pcp'] }}