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

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

Order Information

Patient
{{ $order->patient->name }}
Created
{{ $order->created_at->format('M d, Y H:i') }}
Status
{{ $order::STATUSES[$order->status] }}

Requested Medications

@foreach($order->items as $item) @endforeach
Medication Requested Dosage Requested Quantity
@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
{{ $item->requested_dosage ?: 'Not specified' }} {{ $item->requested_quantity ?: 'Not specified' }}

Assign Doctor

@foreach($doctors as $doctor) @endforeach
Assign Doctor