@extends('layouts.master') @section('title', 'Dashboard') @section('content')

Good Evening, {{ auth()->user()->first_name ?? 'User' }}

Enterprise Public Digital Field Utility

{{-- TODAY'S FOCUS --}}
Today's Focus
{{ implode(' • ', $todayFocus) }}
{{-- THIS MONTH + WORKFLOW STATUS --}}
{{-- THIS MONTH --}}
This Month
✓ Camps Planned {{ number_format( $operations['planned_camps'] ) }}
✓ Active Outreaches {{ number_format( $operations['active_outreaches'] ) }}
✓ Districts Covered {{ number_format( $operations['districts_covered'] ) }}
✓ Facilities Supported {{ number_format( $operations['facilities_supported'] ) }}
{{-- WORKFLOW STATUS --}}
Workflow Status
Triage {{ number_format( $stats['pending_triage'] ) }}
Consultation {{ number_format( $stats['pending_consultation'] ) }}
Laboratory {{ number_format( $stats['pending_lab'] ) }}
Pharmacy {{ number_format( $stats['pending_pharmacy'] ) }}
Dental {{ number_format( $stats['pending_dental'] ) }}
Immunization {{ number_format( $stats['pending_immunization'] ) }}
{{-- PROGRAM IMPACT --}}
Program Impact
👥 Patients Reached
{{ number_format( $impact['patients_reached'] ) }}
🩺 Patient Visits
{{ number_format( $impact['patient_visits'] ) }}
💉 Vaccinations Given
{{ number_format( $impact['vaccinations_given'] ) }}
🤰 ANC Visits
{{ number_format( $impact['anc_visits'] ) }}
🏕 Camps Held
{{ number_format( $impact['camps_held'] ) }}
🤝 Volunteers Participating
{{ number_format( $impact['volunteers_participating'] ) }}
@endsection