@php use App\Models\KpiCard; $impactKpis = KpiCard::query() ->where('is_active', true) ->orderBy('sort_order') ->take(4) ->get(); @endphp
{{-- Heading --}}
Our Impact

Empowering Communities for the Future

Our commitment and innovative approaches continue to deliver measurable results that strengthen and uplift Afghan communities.

{{-- KPI Cards --}}
@forelse(($impactKpis ?? collect()) as $k)
{{ number_format((int) $k->value) }}{{ $k->suffix }}
{{ $k->title }}
@empty {{-- Fallback (optional) --}}
No impact metrics available.
@endforelse