{{ __('Patient: ') . $patient->name }}

{{ __('Back to Patients') }}

Patient Information

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') }}

Allergies

@if($patient->allergies && $patient->allergies->count() > 0)
@foreach($patient->allergies as $allergy) @endforeach
Allergen Severity Reaction
{{ $allergy->allergen }} {{ ucfirst(str_replace('_', ' ', $allergy->severity)) }} {{ $allergy->reaction }}
@else

No allergies recorded for this patient.

@endif

Medical Conditions

@if($patient->medicalConditions && $patient->medicalConditions->count() > 0)
@foreach($patient->medicalConditions as $condition) @endforeach
Condition Status Diagnosed Notes
{{ $condition->condition_name }} {{ ucfirst($condition->status) }} {{ $condition->diagnosed_at ? $condition->diagnosed_at->format('M d, Y') : 'Unknown' }} {{ $condition->notes }}
@else

No medical conditions recorded for this patient.

@endif

Prescriptions

@if($patient->prescriptionsAsPatient && $patient->prescriptionsAsPatient->count() > 0)
@foreach($patient->prescriptionsAsPatient as $prescription) @endforeach
ID Doctor Status Created Action
{{ $prescription->id }} {{ $prescription->doctor->name ?? 'Unknown' }} {{ ucfirst($prescription->status) }} {{ $prescription->created_at->format('M d, Y') }} View Details
@else

No prescriptions recorded for this patient.

@endif

Medication Orders

View All Orders
@if($patient->medicationOrders && $patient->medicationOrders->count() > 0)
@foreach($patient->medicationOrders as $order) @endforeach
Order # Status Doctor Created Action
{{ $order->id }} {{ ucfirst($order->status) }} {{ $order->doctor->name ?? 'Not Assigned' }} {{ $order->created_at->format('M d, Y') }} View Order
@else

No medication orders recorded for this patient.

@endif