Pharmacist Dashboard

Pending Prescriptions

@cell('status', $prescription) @endcell @cell('actions', $prescription) View Details @endcell

Low Stock Inventory

Expiring Inventory (Next 3 Months)

Medication Lookup

Look up Medication

Recent Patient Medication Orders

@if(isset($recentMedicationOrders) && $recentMedicationOrders->count() > 0)
@foreach($recentMedicationOrders as $order) @endforeach
Order # Patient Status Date Action
{{ $order->id }} {{ $order->patient->name ?? 'N/A' }} {{ ucfirst($order->status) }} {{ $order->formatDate('created_at') }} View
@else

No recent medication orders found.

@endif
{{--

Recent Patient Allergies

@if(isset($recentAllergies) && $recentAllergies->count() > 0)
@foreach($recentAllergies as $allergy) @endforeach
Patient Allergen Severity Reaction Action
{{ $allergy->user->name ?? 'N/A' }} {{ $allergy->allergen }} {{ ucfirst(str_replace('_', ' ', $allergy->severity)) }} {{ $allergy->reaction }} View Patient
@else

No recent patient allergies found.

@endif
--}} {{--

Recent Patient Medical Conditions

@if(isset($recentMedicalConditions) && $recentMedicalConditions->count() > 0)
@foreach($recentMedicalConditions as $condition) @endforeach
Patient Condition Status Reported Action
{{ $condition->patient->name }} {{ $condition->condition_name }} {{ ucfirst($condition->status) }} {{ $condition->formatDate('created_at') }} View Patient
@else

No recent patient medical conditions found.

@endif
--}} {{--

Recent Patient Consultations

@if(isset($recentConsultations) && $recentConsultations->count() > 0)
@foreach($recentConsultations as $consultation) @endforeach
Patient Doctor Status Scheduled Action
{{ $consultation->patient->name ?? 'N/A' }} {{ $consultation->doctor->name ?? 'Not Assigned' }} {{ ucfirst($consultation->status) }} {{ $consultation->formatDateTime('scheduled_at') }} View Patient
@else

No recent patient consultations found.

@endif
--}}