{{ __('Estado do Rio de Janeiro') }}
{{ __('PREFEITURA MUNICIPAL DE ANGRA DOS REIS') }}
{{ __('Secretaria de Articulação Governamental') }}
{{ __('Superintendência de Políticas Públicas') }}

{{ __('MAPÃO - PROJETOS E PROGRAMAS') }}

@if(!empty($mapaoFiltrosResumo))
@endif @forelse($mapaoGrupos as $grupo) @php $numPai = $loop->iteration; @endphp @foreach($grupo['projetos'] as $proj) @php $corAndamento = match ($proj->andamento_cor ?? '') { 'verde' => 'mapao-andamento-verde', 'amarelo' => 'mapao-andamento-amarelo', 'vermelho' => 'mapao-andamento-vermelho', default => '', }; @endphp @endforeach @empty @endforelse
{{ __('Nº') }} {{ __('NOME DO PROJETO') }} {{ __('BAIRRO') }} {{ __('ORÇAMENTO PREVISTO') }} {{ __('ORÇAMENTO DISPONÍVEL') }} {{ __('ANDAMENTO') }} {{ __('PRAZO DE IMPLANTAÇÃO') }}
{{ $numPai }} {{ mb_strtoupper($grupo['titulo_banner'], 'UTF-8') }}
{{ $numPai }}.{{ $loop->iteration }} {{ mb_strtoupper((string) ($proj->denominacao ?? ''), 'UTF-8') }} {{ mb_strtoupper((string) ($proj->bairro ?? ''), 'UTF-8') }} R$ {{ number_format((float) ($proj->orcamento_previsto ?? 0), 2, ',', '.') }} R$ {{ number_format((float) ($proj->orcamento_disponivel ?? 0), 2, ',', '.') }} @include('components.projetosProgramas._andamento_mapao_celula', [ 'legendaPorCor' => $mapaoCoresLegenda ?? [], 'cor' => $proj->andamento_cor, 'textoLivre' => $proj->andamento, ]) @include('components.projetosProgramas._prazo_implantacao_celula', [ 'mesAno' => $proj->prazoEntregaCompetenciaMesAnoFormatado(), 'dias' => $proj->prazo_entrega_dias, ])