| Medication | Requested Dosage | Requested Quantity | Status |
|---|---|---|---|
|
@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' }} |
{{ $item::STATUSES[$item->status] }}
@if($item->status === 'rejected' && $item->rejection_reason)
{{ $item->rejection_reason }}
@endif
|
| Medication | Dosage | Frequency | Duration | Quantity |
|---|---|---|---|---|
|
@if($item->isCustomMedication())
{{ $item->custom_medication_name }}
@if($item->custom_medication_details)
{{ $item->custom_medication_details }}
@endif
@else
{{ $item->medication->name }}
@endif
|
{{ $item->dosage }} | {{ $item->frequency }} | {{ $item->duration }} days | {{ $item->quantity }} |