@extends('theme') @section('title', 'Decretos e Leis - Parque Tecnológico do Mar') @section('content') @php $decretosLeis = $decretosLeis ?? []; @endphp
@if(count($decretosLeis) > 0)
@foreach($decretosLeis as $index => $decretoLei)
@if(!empty($decretoLei['numero_lei'])) {{ $decretoLei['numero_lei'] }} @endif @if(!empty($decretoLei['data_publicacao']))
{{ \Carbon\Carbon::parse($decretoLei['data_publicacao'])->format('d/m/Y') }}
@endif
{{ $decretoLei['titulo'] ?? '' }}

{{ $decretoLei['descricao_resumo'] ?? '' }}

@if(!empty($decretoLei['arquivo_url'])) Visualizar Documento @endif
@endforeach
@else
Nenhum decreto ou lei disponível no momento.
@endif
@endsection