{{ __('Create Prescription for Order #') . $order->id }}

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

Patient Information

Name
{{ $order->patient->name }}
Email
{{ $order->patient->email }}
Phone
{{ $order->patient->phone ?: 'N/A' }}
Date of Birth
{{ $order->patient->dob ? $order->patient->dob->format('M d, Y') : 'N/A' }}

Patient Notes

{{ $order->patient_notes ?: 'No notes provided.' }}

Requested Medications

@foreach($order->items as $index => $item)

@if($item->isCustomMedication()) {{ $item->custom_medication_name }} @if($item->custom_medication_details) - {{ $item->custom_medication_details }} @endif @else {{ $item->medication->name }} ({{ $item->medication->generic_name }}) - {{ $item->medication->strength }} {{ $item->medication->dosage_form }} @endif

Requested Dosage: {{ $item->requested_dosage ?: 'Not specified' }}
Requested Quantity: {{ $item->requested_quantity ?: 'Not specified' }}
@endforeach
Create Prescription