@extends('layouts.panel-template', ['section' => 'budgets']) @php $secondaryCards = [ ['wrapper' => 'group', 'accent' => 'bg-primary', 'text' => 'text-primary'], ['wrapper' => 'group', 'accent' => 'bg-primary', 'text' => 'text-primary'], ['wrapper' => '', 'accent' => 'bg-error', 'text' => 'text-error'], ['wrapper' => '', 'accent' => 'bg-primary', 'text' => 'text-primary'], ]; @endphp @section('header-content')
@endsection @section('main-content')

Panel general de presupuesto

{{ $project['name'] }} · {{ $project['houses'] }} viviendas · {{ $project['model'] }}

{{ $budget['hero']['label'] }}

{{ $budget['hero']['amount'] }}MXN

{{ $budget['hero']['chip_label'] }}
{{ $budget['hero']['chip_value'] }} trending_up
@foreach ($budget['hero']['sections'] as $section)
{{ $section['label'] }} {{ $section['amount'] }}
@endforeach
architecture
warning

Rubros y alertas

@foreach ($budget['risk']['items'] as $item)
{{ $loop->first ? 'priority_high' : 'trending_up' }} {{ $item['label'] }}
{{ $item['value'] }}
@endforeach
@foreach ($budget['secondary'] as $index => $item)
{{ $item['label'] }}
{{ $item['amount'] }} {{ $item['meta'] }}
@if (isset($item['width']))
@else
{{ $index === 2 ? 'info' : 'verified' }} {{ $item['note'] }}
@endif
@endforeach

{{ $budget['chart']['title'] }}

{{ $budget['chart']['subtitle'] }}

@foreach ($budget['chart']['legend'] as $legend)
{{ $legend['label'] }}
@endforeach
@foreach ($budget['chart']['bars'] as $bar)
{{ $bar['label'] }}
@endforeach
query_stats

{{ $budget['projection']['title'] }}

{{ $budget['projection']['progress_label'] }} {{ $budget['projection']['progress_value'] }}
{{ $budget['projection']['card_label'] }} {{ $budget['projection']['card_amount'] }}
calendar_month {{ $budget['projection']['card_meta'] }}

Desglose por rubro principal

@foreach ($budget['breakdown'] as $row) @endforeach
Rubro Presupuesto Participacion Status Accion
{{ $row['name'] }} {{ $row['family'] }}
{{ $row['amount'] }}
{{ $row['metric'] }}
{{ $row['status_label'] }} arrow_forward_ios

Rubros prioritarios

Partidas con mayor peso dentro del presupuesto base

@foreach ($budget['highlights'] as $item)
{{ $item['title'] }} {{ $item['value'] }}

{{ $item['description'] }}

{{ $item['meta'] }}
@endforeach
@endsection