Personal Information
| First Name |
{{ $patient->first_name }} |
| Middle Name |
{{ $patient->middle_name }} |
| Last Name |
{{ $patient->last_name }} |
| Gender |
{{ $patient->gender }} |
| Date of Birth |
{{ $patient->date_of_birth?->format('Y-m-d') }} |
| National ID |
{{ $patient->national_id }} |
| Marital Status |
{{ $patient->marital_status }} |
| Phone |
{{ $patient->phone }} |
| Email |
{{ $patient->email }} |
| Address |
{{ $patient->address }} |
Medical Information
| Blood Group |
{{ $patient->blood_group }} |
| Height |
{{ $patient->height }} cm |
| Weight |
{{ $patient->weight }} kg |
| Allergies |
{{ $patient->allergies }} |
| Chronic Diseases |
{{ $patient->chronic_diseases }} |
| Status |
{{ $patient->status ? 'Active' : 'Inactive' }}
|
| Name |
{{ $patient->emergency_contact_name }} |
| Phone |
{{ $patient->emergency_contact_phone }} |
| Relationship |
{{ $patient->emergency_contact_relation }} |
| Insurance Company |
{{ $patient->insurance_company }} |
| Insurance Number |
{{ $patient->insurance_number }} |
{!! nl2br(e($patient->notes)) !!}
Edit
Back