@extends('layouts.app') @section('content')

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