℞
PRESCRIPTION
Prescription No.
{{ $group }}
| Name: | {{ $patient->full_name ?? '—' }} | Age: | {{ $patient->age ?? '—' }} | Gender: | {{ ucfirst($patient->gender ?? '—') }} | Date: | {{ $createdAt->format('d M Y · H:i') }} |
⚠ KNOWN ALLERGIES: {{ implode(', ', $allergyList) }}
@endif
{{-- MEDICATIONS --}}
Medications ({{ $prescriptions->count() }})
| # | Drug Name | Dose | Frequency | Duration | Route | Qty |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $rx->drug_name }} @if($rx->drugItem && $rx->drugItem->generic_name && strtolower($rx->drugItem->generic_name) !== strtolower($rx->drug_name))Generic: {{ $rx->drugItem->generic_name }} @endif |
{{ $rx->dosage ?: '—' }} | {{ $rx->frequency ?: '—' }} | {{ $rx->duration ?: '—' }} | {{ $rx->route ?: '—' }} | {{ $rx->quantity }} |
Additional Instructions
{{ $instructions }}