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

COMPONENT-IV PROGRESS

@endsection @section('content') @php $records = collect([ (object)[ 'serial_no' => '1', 'activity' => 'Program', 'description' => 'HRU Implementation Plan submitted to EAD.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-11-13', 'status' => 'Completed', ], (object)[ 'serial_no' => '1.1', 'activity' => '-', 'description' => 'The detailed implementation plan for Component II was submitted to EAD.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-10-31', 'status' => 'Completed', ], (object)[ 'serial_no' => '1.2', 'activity' => '-', 'description' => 'The Reverse Implementation Support Mission for IFRAP Components I and III was held in Karachi.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-10-31', 'status' => 'Completed', ], (object)[ 'serial_no' => '1.3', 'activity' => '-', 'description' => 'A meeting to review IFRAP progress was held at P&DD, chaired by the Planning Secretary, P&DD GoB.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-10-28', 'status' => 'Completed', ], (object)[ 'serial_no' => '1.4', 'activity' => '-', 'description' => 'A progress review meeting was held at EAD, chaired by the Joint Secretary EAD, to assess implementation progress and coordination.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-10-27', 'status' => 'Completed', ], (object)[ 'serial_no' => '2', 'activity' => 'Monitoring & Evaluation (M&E)', 'description' => 'Project baseline activities completed, GRM deployed, M&E sessions conducted, PMIS deployed with API integration and multiple review meetings held.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => '2025-11-28', 'status' => 'Completed', ], (object)[ 'serial_no' => '3', 'activity' => 'Finance and Procurement', 'description' => 'SAP integration pilot, FMIS rollout, training sessions, financial reviews and procurement coordination meetings conducted.', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], ]); @endphp
COMPONENT IV: COMMUNITY INFRASTRUCTURE REHABILITATION
{{-- --}} @forelse($records as $record) @empty @endforelse
S # Activity Description Target Start Date Planned End Date Actual End Date Status
{{ $record->serial_no }} {{ $record->activity }} {{ $record->description }} {{ $record->target_start_date ? date('M d, Y', strtotime($record->target_start_date)) : '-' }} {{ $record->planned_end_date ? date('M d, Y', strtotime($record->planned_end_date)) : '-' }} {{ $record->actual_end_date ? date('M d, Y', strtotime($record->actual_end_date)) : '-' }} {{ $record->status }}
No records found.
@endsection