Total assigned patients
Upcoming consultations
Completed consultations
Consultations this week
Total prescriptions written
Assigned medication orders
| Order # | Patient | Assigned | Status | Action |
|---|---|---|---|---|
| {{ $order->id }} | {{ $order->patient->name }} | {{ $order->assigned_at->diffForHumans() }} | {{ $order->status }} | View |
No medication orders have been assigned to you yet.
| Patient | Assigned By | Assigned | Action |
|---|---|---|---|
| {{ $assignment->patient->name }} | {{ $assignment->assignedBy->name }} | {{ $assignment->created_at->diffForHumans() }} | View Profile |
No patients have been assigned to you yet.
| Patient | Type | Submitted | Status | Action |
|---|---|---|---|---|
| {{ $questionnaire->user->name }} | {{ $questionnaire->treatment ? $questionnaire->treatment->name : 'General' }} | {{ $questionnaire->created_at->diffForHumans() }} | {{ ucfirst($questionnaire->status) }} | View |
No recent patient questionnaires found.
| Patient | Condition | Status | Reported | Action |
|---|---|---|---|---|
| {{ $condition->patient->name }} | {{ $condition->condition_name }} | {{ ucfirst($condition->status) }} | {{ $condition->created_at->diffForHumans() }} | View Patient |
No recent patient medical conditions found.
| Patient | Medication | Status | Ordered | Action |
|---|---|---|---|---|
| {{ $order->patient->name }} | @if($order->items->count() > 0) {{ $order->items->first()->medication->name ?? 'Custom Medication' }} @if($order->items->count() > 1) (+{{ $order->items->count() - 1 }} more) @endif @else N/A @endif | {{ ucfirst($order->status) }} | {{ $order->created_at->diffForHumans() }} | View Order |
No recent patient medication orders found.
| 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.