Dr. {{ $prescription->doctor?->name }}
@php $doctor = $prescription->doctor; @endphp
Phone: {{ $doctor?->phone }}
@if($doctor->mobile_phone)Mobile: {{ $doctor?->mobile }}
@endifDEA Number: {{ $prescription->doctor?->doctorProfile->dea_number }}
NPI: {{ $prescription->doctor?->doctorProfile->npi }}
{{ $prescription->user?->name }}
@php $user = $prescription->user; @endphp
Phone: {{ $user?->phone }}
Email: {{ $user?->email }}
@if($user->mobile_phone)Mobile: {{ $user?->mobile }}
@endifDOB: {{ $prescription->user?->dob?->format('M d, Y') }}
ID: {{ $prescription->user?->id }}
Issued: {{ $prescription->created_at->format('M d, Y H:i') }} | Valid Until: {{ $prescription->created_at->addYear()->format('M d, Y') }} | Status: {{ ucfirst($prescription->status) }}
@if($prescription->notes)Notes: {{ $prescription->notes }}
@endif| Medication | Dosage | Frequency | Duration | Qty | Instructions |
|---|---|---|---|---|---|
| {{ $item->medication?->name }} ({{ $item->medication?->strength }}) | {{ $item->dosage }} | {{ $item->frequency }} | {{ $item->duration }} days | {{ $item->quantity }} | {{ $item->custom_medication_details ?? 'N/A' }} |
| Allergen | Reaction |
|---|---|
| {{ $allergy->allergen }} | {{ $allergy->reaction }} |
Pharmacist: {{ $prescription->pharmacist?->name }} | Pharmacy: GO MD PHARMACY LLC
Dispensed: {{ $prescription->dispensed_at?->format('M d, Y H:i') }}
@endif --}} @if($prescription->verification_notes)Verification Notes: {!! e($prescription->verification_notes) !!}
@endif