| Order # | Patient | Status | Date | Action |
|---|---|---|---|---|
| {{ $order->id }} | {{ $order->patient->name ?? 'N/A' }} | {{ ucfirst($order->status) }} | {{ $order->formatDate('created_at') }} | View |
No recent medication orders found.
@endif| Patient | Allergen | Severity | Reaction | Action |
|---|---|---|---|---|
| {{ $allergy->user->name ?? 'N/A' }} | {{ $allergy->allergen }} | {{ ucfirst(str_replace('_', ' ', $allergy->severity)) }} | {{ $allergy->reaction }} | View Patient |
No recent patient allergies found.
@endif| Patient | Condition | Status | Reported | Action |
|---|---|---|---|---|
| {{ $condition->patient->name }} | {{ $condition->condition_name }} | {{ ucfirst($condition->status) }} | {{ $condition->formatDate('created_at') }} | View Patient |
No recent patient medical conditions found.
@endif| Patient | Doctor | Status | Scheduled | Action |
|---|---|---|---|---|
| {{ $consultation->patient->name ?? 'N/A' }} | {{ $consultation->doctor->name ?? 'Not Assigned' }} | {{ ucfirst($consultation->status) }} | {{ $consultation->formatDateTime('scheduled_at') }} | View Patient |
No recent patient consultations found.
@endif