@extends('layouts.demo10.base') @section('content')
{{-- ── Page Header ── --}}

RBMS Dashboard

Home / Dashboard

{{-- ── Tab Buttons ── --}}
{{-- ══════════════════════════════════════════ PDO Tab ══════════════════════════════════════════ --}}
@forelse($pdo as $indicator)
{{-- Badge + menu --}}
PDO-{{ str_pad($loop->iteration, 2, '0', STR_PAD_LEFT) }}
{{-- Title --}}

{{ $indicator->name ?: ($indicator->definition ?: 'No title provided.') }}

{{-- Stats --}}
Target {{ $indicator->end_target ?? '-' }}
Baseline {{ $indicator->baseline_value ?? '-' }}
@empty
No PDO indicators found.
@endforelse
{{-- ══════════════════════════════════════════ IRI Tab (hidden by default) ══════════════════════════════════════════ --}}
{{-- /min-h-screen --}} {{-- ══════════════════════════════════════════════════════════ Detail Modal ══════════════════════════════════════════════════════════ --}} @endsection @section('scripts') @endsection