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

COMPONENT-II PROGRESS

@endsection @section('content') @php $records = collect([ (object)[ 'serial_no' => '1', 'activity' => 'Market Outreach for Prospective Bidders', 'description' => '2nd Market Outreach sessions completed on 25th March 2025', 'target_start_date' => '2025-03-25', 'planned_end_date' => null, 'actual_end_date' => '2025-03-25', 'status' => 'Completed', ], (object)[ 'serial_no' => '2', 'activity' => 'Selection of Sites for AWS', 'description' => 'Combined Bid Evaluation Report re-submitted to World Bank', 'target_start_date' => '2025-08-25', 'planned_end_date' => null, 'actual_end_date' => '2025-10-07', 'status' => 'Completed', ], (object)[ 'serial_no' => '3', 'activity' => 'Procurement of AWS', 'description' => 'Contract signed for 110 AWS stations', 'target_start_date' => '2025-09-03', 'planned_end_date' => '2026-07-01', 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '4', 'activity' => 'Procurement of HPC', 'description' => 'Specification under review by System Integrator', 'target_start_date' => '2026-06-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '5', 'activity' => 'Procurement and Installation of Radars', 'description' => 'RFB submitted and under review with World Bank', 'target_start_date' => '2026-05-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '6', 'activity' => 'Procurement of System Integrator', 'description' => 'Evaluation report submitted to World Bank', 'target_start_date' => null, 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '7', 'activity' => 'Design, Supervision & Project Mgmt. of Radars', 'description' => 'Proposals received and under evaluation', 'target_start_date' => '2026-01-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '8', 'activity' => 'Civil Works Consultancy and Implementation', 'description' => 'Bids received and under evaluation', 'target_start_date' => '2025-12-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '9', 'activity' => 'Annual Work plan', 'description' => 'Submitted to Finance Division', 'target_start_date' => '2025-06-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '10', 'activity' => 'Institutional Development Plan', 'description' => 'Submitted for approval', 'target_start_date' => '2025-12-01', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '11', 'activity' => 'Stakeholder Meetings-Implementation status', 'description' => 'Meetings held and matter to be placed before PSC', 'target_start_date' => '2025-11-12', 'planned_end_date' => null, 'actual_end_date' => '2026-01-22', 'status' => 'Completed', ], ]); @endphp
COMPONENT II: 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