No medications in this order.
@else| Medication | Requested Dosage | Requested Quantity | Status |
|---|---|---|---|
|
@if($item->medication)
{{ $item->medication->name }}
@else
{{ $item->custom_medication_name }}
@if($item->custom_medication_details)
{{ $item->custom_medication_details }}
@endif
@endif
|
{{ $item->requested_dosage ?? 'Not specified' }} | {{ $item->requested_quantity ?? 'Not specified' }} | {{ ucfirst($item->status) }} |
| Medication | Dosage | Quantity | Instructions |
|---|---|---|---|
| @if($item->medication) {{ $item->medication->name }} @else {{ $item->custom_medication_name }} @endif | {{ $item->dosage ?? 'Not specified' }} | {{ $item->quantity ?? 'Not specified' }} | {{ $item->instructions ?? 'Not specified' }} |