@extends('layouts.panel-template', ['section' => 'home']) @php $page = $dashboardPage; @endphp @section('header-content') @include('dashboard.partials.header') @endsection @section('main-content')

{{ $page['title'] }}

{{ $page['subtitle'] }}

@foreach ($page['filters'] as $filter) @endforeach
@foreach ($page['kpis'] as $kpi)

{{ $kpi['label'] }}

{{ $kpi['value'] }} @if (isset($kpi['meta'])) {{ $kpi['meta'] }} @endif
@if (isset($kpi['progress_width']))
@endif
@endforeach

timeline Avance de Obra Temporal

@foreach ($page['timeline'] as $item)
{{ $item['label'] }}
@endforeach
@foreach ($page['stages'] as $stage)

{{ $stage['label'] }}

{{ $stage['value'] }} {{ $stage['status'] }}
@endforeach

payments Analisis Financiero

Presupuesto Programado {{ $page['financials']['programmed'] }}
Garantia retenida {{ $page['financials']['retention'] }}
Gasto Real Ejecutado {{ $page['financials']['real'] }}

Comprometido

{{ $page['financials']['committed'] }}

Disponible

{{ $page['financials']['available'] }}

schedule Cronograma

@foreach ($page['schedule'] as $item)

{{ $item['title'] }}

{{ $item['date'] }}

{{ $item['status'] }}

@endforeach

Tabla de Desviacion

@foreach ($page['schedule_summary'] as $row)
{{ $row['label'] }} {{ $row['value'] }}
@endforeach

inventory_2 Materiales Criticos

@foreach ($page['materials'] as $material)
{{ $material['icon'] }}

{{ $material['name'] }}

{{ $material['stock'] }}

{{ $material['state'] }}
@endforeach
@endsection