@extends('theme.default.layouts.app') @section('dashboard-title')

Result Based Monitoring Framework

@endsection @section('content') @php $rbmfs = [ (object)[ 'title' => 'PDO LEVEL INDICATORS', 'indicators' => [ (object)['description' => 'People regaining access to at least one essential service (Number)', 'baseline' => 0, 'targets' => 1500000, 'achievements' => 0], (object)['description' => '> of which are females (Percentage)', 'baseline' => 0, 'targets' => 50, 'achievements' => 0], (object)['description' => 'People with enhanced resilience to climate risks (Number)', 'baseline' => 0, 'targets' => 1800000, 'achievements' => 0], (object)['description' => '> of which are youth (Percentage)', 'baseline' => 0, 'targets' => 540000, 'achievements' => 0], (object)['description' => '> of which are females (Percentage)', 'baseline' => 0, 'targets' => 900000, 'achievements' => 0], (object)['description' => 'Person-days of employment generated (Number)', 'baseline' => 0, 'targets' => 14500000, 'achievements' => 0], (object)['description' => 'Increase in weather forecast lead time of PMD (Days)', 'baseline' => 3, 'targets' => 5, 'achievements' => 0], ] ], (object)[ 'title' => 'INTERMEDIATE LEVEL INDICATORS', 'indicators' => [ (object)['description' => 'Housing units restored/reconstructed (Number)', 'baseline' => 0, 'targets' => 97000, 'achievements' => 0], (object)['description' => '> of which female headed households and households with vulnerable women (Percentage)', 'baseline' => 0, 'targets' => 25, 'achievements' => 0], (object)['description' => '> of which households with persons with disabilities (Percentage)', 'baseline' => 0, 'targets' => 5, 'achievements' => 0], (object)['description' => 'Community flood resilience plans prepared (Number)', 'baseline' => 0, 'targets' => 20, 'achievements' => 0], (object)['description' => 'Land area benefitiing from restore irrigation systems (Hectare (Ha)', 'baseline' => 0, 'targets' => 50000, 'achievements' => 0], (object)['description' => 'River basin planning studies (Number)', 'baseline' => 0, 'targets' => 3, 'achievements' => 0], (object)['description' => 'Land area with improved protection through rehabilitated flood protections infrastructure (Ha)', 'baseline' => 0, 'targets' => 50000, 'achievements' => 0], (object)['description' => "Citizens' Engagement Strategy developed and rolled out (Text)", 'baseline' => 0, 'targets' => 0, 'achievements' => 0], (object)['description' => 'Registered grievances satisfactorily resolved in line with the GRM (Percentage)', 'baseline' => 0, 'targets' => 100, 'achievements' => 0], (object)['description' => 'Length of roads rehabilitated (Kilometers)', 'baseline' => 0, 'targets' => 20, 'achievements' => 0], (object)['description' => 'Restoration of small community facilities (Number)', 'baseline' => 0, 'targets' => 2, 'achievements' => 0], (object)['description' => 'Weather radars installed and operationalized (Number)', 'baseline' => 0, 'targets' => 4, 'achievements' => 0], (object)['description' => 'Automatic Weather Stations (AWS) installed and operationalized (Number)', 'baseline' => 0, 'targets' => 110, 'achievements' => 0], ] ] ]; @endphp
@php $currentTitle = null; $toggleColor = true; @endphp @foreach($rbmfs as $rbmf) {{-- Display Title only once --}} @if($currentTitle !== $rbmf->title) @php $currentTitle = $rbmf->title; $toggleColor = !$toggleColor; @endphp @endif {{-- Loop through Indicators --}} @foreach($rbmf->indicators as $indicator) @endforeach @endforeach
RESULTS
INDICATORS: BASELINE TARGETS ACHIEVEMENTS
{{ $rbmf->title }}:
{{ $indicator->description }}
{{ $indicator->baseline ?? 0 }}
{{ $indicator->targets ?? 0 }}
{{ $indicator->achievements ?? 0 }}
@endsection