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

Result Based Monitoring Framework

@endsection @section('content')
@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