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

WCKP - PROGRESS DASHBOARD

@endsection @section('extra_margin', 'style=margin-top:32px;') @section('content')
@foreach ($data as $row) @endforeach
SR. INTERVENTIONS STATUS PROJECT TARGETS TILL LAST YEAR PROGRESS CURRENT YEAR (2024-2025) CUMULATIVE PROGRESS PROGRESS % AGAINST PROJECT TARGETS
CURRENT TARGETS CURRENT PROGRESS PROGRESS %
{{ $row['sr'] ?? '' }} {{ $row['intervention'] ?? '' }} {{ $row['status'] ?? '' }} {{ number_format($row['project_targets'] ?? 0) }} {{ number_format($row['till_last_year'] ?? 0) }} {{ number_format($row['current_target'] ?? 0) }} {{ number_format($row['current_progress'] ?? 0) }} {{ $row['progress_percent'] ?? 0 }}% {{ number_format($row['cumulative'] ?? 0) }} {{ $row['percent_against'] ?? 0 }}%
@endsection @section('scripts') @vite('resources/js/pages/dashboard.js') @endsection