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

COMPONENT-III PROGRESS

@endsection @section('content') @php $records = collect([ (object)[ 'serial_no' => '1', 'activity' => 'Beneficiary data validation', 'description' => 'Validation Target: 284,312 Data Collected by enumerator: 231,883 (81%) Data cleared by QA firm: 102,008 Number of Beneficiaries approved by HRU for housing grants: 72,868 The Validation is completed at the enomurator level, and data cleaning/review is in progress at the quality assurance firm level', 'target_start_date' => '2024-10-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '2', 'activity' => 'Construction of Housing Units (Batch I - 106 Units)', 'description' => 'The Housing Units are Constructed.', 'target_start_date' => '2025-01-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '3.1', 'activity' => 'Construction of Housing Units (Batch II-8000) - Accounts Opened', 'description' => '8000 Beneficiaries accounts opened.', 'target_start_date' => '2025-06-30', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '3.2', 'activity' => 'Construction of Housing Units (Batch II-8000) - Work Initiated', 'description' => '8000 Housing Units work initiated.', 'target_start_date' => '2025-06-25', 'planned_end_date' => null, 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '3.3', 'activity' => 'Construction of Housing Units (Batch II-8000) - Houses Completed', 'description' => '8000 Housing Units construction is completed (roof)', 'target_start_date' => '2024-02-25', 'planned_end_date' => '2024-05-29', 'actual_end_date' => '2026-01-01', 'status' => 'Completed', ], (object)[ 'serial_no' => '4.1', 'activity' => 'Construction of Housing Units (Batch-III 44,000) (Target revised) - Accounts Opened', 'description' => "50,910 Beneficiaries' accounts opened", 'target_start_date' => '2025-07-31', 'planned_end_date' => '2025-12-30', 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '4.2', 'activity' => 'Construction of Housing Units (Batch-III 44,000) (Target revised) - Work Initiated', 'description' => '48,376 Housing Units work initiated', 'target_start_date' => '2025-07-31', 'planned_end_date' => '2025-12-30', 'actual_end_date' => null, 'status' => 'In Progress', ], (object)[ 'serial_no' => '4.3', 'activity' => 'Construction of Housing Units (Batch-III 44,000) (Target revised) - Houses Completed', 'description' => '36,048 Housing Units construction is completed (Plinth) - 69% achieved, 28,591 (Lintel) - 55%, 20,477 (Roof) - 39%, 15,387 Completed - 29%', 'target_start_date' => '2025-07-31', 'planned_end_date' => '2026-06-30', 'actual_end_date' => '2026-06-30', 'status' => 'Completed', ], ]); @endphp
COMPONENT III: 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