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

PHYSICAL PROGRESS (FY 2025-2026)

@endsection @section('content') @foreach($components as $component)
{{ $component['title'] }}: {{ $component['description'] }}
@forelse($component['data'] 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.
@endforeach @endsection