@php
$ifiStats = [
['label' => 'WORLD BANK', 'value' => '95,200', 'pct' => '38.3%', 'tone' => 'tone-blue'],
['label' => 'ADB', 'value' => '78,400', 'pct' => '48.4%', 'tone' => 'tone-purple'],
['label' => 'ISDB', 'value' => '42,600', 'pct' => '28.8%', 'tone' => 'tone-green'],
['label' => 'EIB', 'value' => '21,800', 'pct' => '25.6%', 'tone' => 'tone-orange'],
['label' => 'GOS / GOP', 'value' => '10,320', 'pct' => '18.8%', 'tone' => 'tone-cyan'],
];
@endphp
@foreach($ifiStats as $stat)
{{ $stat['label'] }}
{{ $stat['value'] }}
@endforeach
{{-- ===== CHART + TABLE GRID ===== --}}
{{-- IFI Completion Trend (Cumulative) --}}
{{-- IFI Disbursement vs Completion --}}
| IFI |
ALLOCATED |
COMPLETED |
DISB. |
@php
$disbRows = [
['ifi' => 'World Bank', 'allocated' => '248,400', 'completed' => '95,200', 'pct' => '38%', 'color' => '#dbeafe', 'text' => '#1d4ed8'],
['ifi' => 'ADB', 'allocated' => '162,000', 'completed' => '78,400', 'pct' => '48%', 'color' => '#fef9c3', 'text' => '#a16207'],
['ifi' => 'IsDB', 'allocated' => '148,000', 'completed' => '42,600', 'pct' => '29%', 'color' => '#dcfce7', 'text' => '#15803d'],
['ifi' => 'EIB', 'allocated' => '85,000', 'completed' => '21,800', 'pct' => '26%', 'color' => '#fef2f2', 'text' => '#dc2626'],
['ifi' => 'GoS/GoP', 'allocated' => '55,045', 'completed' => '10,320', 'pct' => '19%', 'color' => '#f3e8ff', 'text' => '#7c3aed'],
];
@endphp
@foreach($disbRows as $row)
| {{ $row['ifi'] }} |
{{ $row['allocated'] }} |
{{ $row['completed'] }} |
{{ $row['pct'] }}
|
@endforeach