@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Decretos e Leis - Parque Tecnológico')) @section('content') @include('errors.messageFlash')
| {{ __('Título') }} | {{ __('Número') }} | {{ __('Data publicação') }} | {{ __('Status') }} | {{ __('Ações') }} |
|---|---|---|---|---|
| {{ Str::limit($decretoLei->titulo, 60) }} | {{ $decretoLei->numero_lei ?? '–' }} | {{ $decretoLei->data_publicacao?->format('d/m/Y') ?? '–' }} | @include('components.buttons._status', [ 'index' => $index, 'route' => 'admin.parqueTecnologico.decretosLeis.status', 'id' => $decretoLei->id, 'status' => $decretoLei->status, 'permission' => 'GERENCIADOR_DE_PARQUE_TECNOLOGICO', ]) | |
| {{ __('Nenhum decreto/lei encontrado.') }} | ||||