Patient Operations
Unified patient workflow dashboard
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.patients.index'),
'emoji' => '๐งพ',
'count' => $registrationCount ?? 0,
'title' => 'Registration',
'subtitle' => 'Patient intake',
'bg' => '#dbeafe',
'color' => '#1d4ed8',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.triage.queue'),
'emoji' => '๐ฉบ',
'count' => $triageCount ?? 0,
'title' => 'Triage',
'subtitle' => 'Vitals & screening',
'bg' => '#fef3c7',
'color' => '#b45309',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.consultations.queue'),
'emoji' => '๐จโโ๏ธ',
'count' => $consultationCount ?? 0,
'title' => 'Consultation',
'subtitle' => 'Clinical review',
'bg' => '#ede9fe',
'color' => '#6d28d9',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.lab-review.queue'),
'emoji' => '๐งช',
'count' => $labCount ?? 0,
'title' => 'Laboratory',
'subtitle' => 'Lab requests',
'bg' => '#dcfce7',
'color' => '#15803d',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.pharmacy.queue'),
'emoji' => '๐',
'count' => $pharmacyCount ?? 0,
'title' => 'Pharmacy',
'subtitle' => 'Dispensing queue',
'bg' => '#fee2e2',
'color' => '#dc2626',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.dental.queue'),
'emoji' => '๐ฆท',
'count' => $dentalCount ?? 0,
'title' => 'Dental',
'subtitle' => 'Dental services',
'bg' => '#fce7f3',
'color' => '#be185d',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.optical.queue'),
'emoji' => '๐',
'count' => $opticalCount ?? 0,
'title' => 'Optical',
'subtitle' => 'Eye clinic',
'bg' => '#e0f2fe',
'color' => '#0369a1',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.counseling.queue'),
'emoji' => '๐ง ',
'count' => $counselingCount ?? 0,
'title' => 'Counseling',
'subtitle' => 'Mental support',
'bg' => '#ede9fe',
'color' => '#7c3aed',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.anc.queue'),
'emoji' => '๐คฐ',
'count' => $ancCount ?? 0,
'title' => 'ANC',
'subtitle' => 'Maternal care',
'bg' => '#fae8ff',
'color' => '#a21caf',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.immunization.queue'),
'emoji' => '๐',
'count' => $immunizationCount ?? 0,
'title' => 'Immunization',
'subtitle' => 'Vaccination services',
'bg' => '#ecfccb',
'color' => '#4d7c0f',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.nutrition.queue'),
'emoji' => '๐ฅ',
'count' => $nutritionCount ?? 0,
'title' => 'Nutrition',
'subtitle' => 'Nutrition support',
'bg' => '#fef9c3',
'color' => '#a16207',
]
)
@include(
'admin.patients.partials.workflow-card',
[
'route' => route('admin.financial.queue'),
'emoji' => '๐ฐ',
'count' => $financialCount ?? 0,
'title' => 'Financial Literacy',
'subtitle' => 'Community empowerment',
'bg' => '#dcfce7',
'color' => '#166534',
]
)
Today Overview
Operational summary
Patients Seen Today
{{ $patientsToday }}
Active Encounters
{{ $activeEncounters }}
Pending Labs
{{ $pendingLabs }}
@endsection