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' }}
Patient Notes:
{{ $order->patient_notes }}
Doctor Notes:
{{ $order->doctor_notes }}
| 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) }} |
Prescription ID:
{{ $order->prescription->id }}
Status:
{{ ucfirst($order->prescription->status) }}
| 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 }} |
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' }}