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

{{ $page['title'] }}

@foreach ($page['kpis'] as $kpi)
{{ $kpi['label'] }}
{{ $kpi['value'] }}
{{ $kpi['meta'] }}
@if ($kpi['progress_width'])
{{ trim($kpi['progress_width'], '%') }}%
@endif
@endforeach

Desviacion presupuestal por obra

Comparacion entre inversion planeada y real

@foreach ($page['deviation'] as $bar)
{{ $bar['label'] }}
@endforeach

Riesgos de sobrepresupuesto

@foreach ($page['risks'] as $risk)

{{ $risk['title'] }}

{{ $risk['description'] }}

{{ $risk['value'] }}
@endforeach

Flujo de efectivo reciente

@foreach ($page['cashflow'] as $row) @endforeach
Referencia Entidad Categoria Presupuesto Pagado Pendiente Retención Estado
{{ $row['reference'] }}

{{ $row['date'] }}

{{ $row['entity'] }} {{ $row['category'] }} {{ $row['budget'] }} {{ $row['amount'] }} {{ $row['pending'] }} {{ $row['retention'] }} @if ($row['status_icon'] === 'dot') @else {{ $row['status_icon'] }} @endif {{ $row['status'] }}
@endsection