@php
$breadcrumbs = [
['route' => route('index'), 'title' => __("Página Inicial")],
['currentPage' => "page", 'title' => __("Incentivos Culturais e Esportivos")],
];
@endphp
@include('components._breadcrumb', $breadcrumbs)
@include('components._titleMain', [
"title" => __("Incentivos Culturais e Esportivos"),
"summary" => __("Projetos culturais aprovados no âmbito da Lei Municipal de Incentivo à Cultura e Esportes."),
])
| Proponente |
Projeto |
Valor do projeto |
Objeto |
Exercício |
@forelse($registros as $row)
| {{ $row->proponente }} |
{{ $row->projeto }} |
@if($row->valor_projeto !== null)
R$ {{ number_format((float) $row->valor_projeto, 2, ',', '.') }}
@else
{{ $row->valor_projeto_raw ?? '-' }}
@endif
|
{{ $row->objeto }} |
{{ $row->exercicio }} |
@empty
| Nenhum registro encontrado. |
@endforelse