@php $legislacaoListFilters = request()->only(\App\Http\Resources\LegislacaoResource::ADMIN_FILTER_KEYS); @endphp @if (isset($legislacao))
{{ __('Correções na legislação (errata / republicação)') }}
@csrf @foreach($legislacaoListFilters as $key => $value) @if($value !== null && $value !== '') @endif @endforeach
@php $boPanelSelId = old('id_boletim_oficial', ''); @endphp
@if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_LEGISLACAO')['editar']) @endif
@forelse ($legislacao->retificacoes as $ret) @empty @endforelse
{{ __('Tipo') }} {{ __('Boletim') }} {{ __('Descrição') }} {{ __('Ações') }}
{{ (int) $ret->cd_tipo === 1 ? __('Errata') : __('Republicação') }} @include('components.legislacao._boletimNumeroLink', ['boletim' => $ret->boletim]) {{ \Illuminate\Support\Str::limit($ret->ds_descricao ?? '', 120) }} @if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_LEGISLACAO')['editar']) @endif @if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_LEGISLACAO')['excluir'])
@csrf @method('delete') @foreach($legislacaoListFilters as $key => $value) @if($value !== null && $value !== '') @endif @endforeach
@endif
{{ __('Nenhuma correção cadastrada.') }}
@endif