{{ __('Medication Order #') . $order->id }}

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

Order Information

Order Date:

{{ $order->created_at->format('M d, Y g:i A') }}

Status:

{{ ucfirst($order->status) }}

Patient:

{{ $order->patient->name ?? 'Unknown' }}

Doctor:

{{ $order->doctor->name ?? 'Not Assigned' }}

@if($order->patient_notes)

Patient Notes:

{{ $order->patient_notes }}

@endif @if($order->doctor_notes)

Doctor Notes:

{{ $order->doctor_notes }}

@endif

Ordered Medications

@foreach($order->items as $item) @endforeach
Medication Requested Dosage Requested Quantity Status
@if($item->isCustomMedication()) {{ $item->custom_medication_name }} (Custom) @else {{ $item->medication->name ?? 'Unknown' }} @endif {{ $item->requested_dosage }} {{ $item->requested_quantity }} {{ ucfirst($item->status) }}
@if($order->prescription)

Prescription Information

Prescription ID:

{{ $order->prescription->id }}

Status:

{{ ucfirst($order->prescription->status) }}

Prescribed Medications

@foreach($order->prescription->items as $item) @endforeach
Medication Dosage Frequency Duration Quantity
@if($item->isCustomMedication()) {{ $item->custom_medication_name }} (Custom) @else {{ $item->medication->name ?? 'Unknown' }} @endif {{ $item->dosage }} {{ $item->frequency }} {{ $item->duration }} days {{ $item->quantity }}
@endif

Patient Information

View Full Patient Profile

Name:

{{ $order->patient->name ?? 'Unknown' }}

Email:

{{ $order->patient->email ?? 'Unknown' }}

Phone:

{{ $order->patient->phone ?? 'Not provided' }}

Date of Birth:

{{ $order->patient->date_of_birth ? $order->patient->date_of_birth->format('M d, Y') : 'Not provided' }}

@if($order->patient->allergies && $order->patient->allergies->count() > 0)

Allergies

    @foreach($order->patient->allergies as $allergy)
  • {{ $allergy->allergen }} - {{ ucfirst($allergy->severity) }} @if($allergy->reaction) ({{ $allergy->reaction }}) @endif
  • @endforeach
@endif