@extends('theme.default.layouts.app')
@section('dashboard-title')
MONITORING (Spot Check)
@endsection
@section('content')
@php
$monitoringCount = $monitoringCount ?? 18;
$districts = $districts ?? [
'District A',
'District B',
'District C',
'District D',
];
$progressData = $progressData ?? [12, 9, 15, 6];
$womenHeaded = $womenHeaded ?? [4, 3, 5, 2];
$disabilityHeaded = $disabilityHeaded ?? [1, 2, 1, 0];
$lotLabels = $lotLabels ?? ['Lot 1', 'Lot 2', 'Lot 3', 'Lot 4'];
$lotData = $lotData ?? [5, 4, 6, 3];
@endphp
Monitoring Cases
{{ $monitoringCount }}
{{-- Pass dynamic data to JS --}}
@endsection
@section('scripts')
@vite('resources/theme/js/pages/monitoring.js')
@endsection