Name:
{{ $patient->name }}
Email:
{{ $patient->email }}
Phone:
{{ $patient->phone ?? 'Not provided' }}
Date of Birth:
{{ $patient->date_of_birth ? $patient->date_of_birth->format('M d, Y') : 'Not provided' }}
Gender:
{{ $patient->gender ?? 'Not provided' }}
Registered:
{{ $patient->created_at->format('M d, Y') }}
| Allergen | Severity | Reaction |
|---|---|---|
| {{ $allergy->allergen }} | {{ ucfirst(str_replace('_', ' ', $allergy->severity)) }} | {{ $allergy->reaction }} |
No allergies recorded for this patient.
@endif| Condition | Status | Diagnosed | Notes |
|---|---|---|---|
| {{ $condition->condition_name }} | {{ ucfirst($condition->status) }} | {{ $condition->diagnosed_at ? $condition->diagnosed_at->format('M d, Y') : 'Unknown' }} | {{ $condition->notes }} |
No medical conditions recorded for this patient.
@endif| ID | Doctor | Status | Created | Action |
|---|---|---|---|---|
| {{ $prescription->id }} | {{ $prescription->doctor->name ?? 'Unknown' }} | {{ ucfirst($prescription->status) }} | {{ $prescription->created_at->format('M d, Y') }} |
|
No prescriptions recorded for this patient.
@endif| Order # | Status | Doctor | Created | Action |
|---|---|---|---|---|
| {{ $order->id }} | {{ ucfirst($order->status) }} | {{ $order->doctor->name ?? 'Not Assigned' }} | {{ $order->created_at->format('M d, Y') }} |
|
No medication orders recorded for this patient.
@endif