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

{{ $page['eyebrow'] }}

{{ $page['title'] }}

{{ $page['subtitle'] }}

@foreach ($page['actions'] as $action) @endforeach

{{ $page['hero']['title'] }}

{{ $page['hero']['subtitle'] }}

{{ $page['hero']['value'] }}
@foreach ($page['hero']['milestones'] as $milestone) {{ $milestone }} @endforeach
warning

{{ $page['critical_alerts'] }}

Alertas criticas

@foreach ($page['stats'] as $stat)

{{ $stat['label'] }}

{{ $stat['value'] }}

@endforeach

Desempeno financiero

Total: {{ $page['finance']['total'] }}

Presupuesto ejercido

{{ $page['finance']['spent'] }}

Presupuesto restante

{{ $page['finance']['remaining'] }}

Estado de obras

@foreach ($page['stage_status'] as $stage)
{{ $stage['icon'] }}
{{ $stage['label'] }} {{ $stage['progress'] }}
{{ $stage['status'] }}
@endforeach

notification_important Alertas criticas

@foreach ($page['alerts'] as $alert)
{{ $alert['tag'] }} {{ $alert['time'] }}

{{ $alert['title'] }}

{{ $alert['description'] }}

@endforeach
@endsection