@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Arquivos da Licitação/Procedimento')) @section('content') @include('errors.messageFlash')
@php $headLine = " " . __('Arquivos do Registro'); @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.licitacoesProcedimentos.index', 'routeBackParams' => request()->only(['ano', 'tipo_processo', 'tipo', 'status', 'nr_processo', 'page']), 'nameBack' => __('Voltar'), 'permission' => 'GERENCIADOR_DE_LICITACOES_E_PROCEDIMENTOS', ])
@csrf @foreach(['ano', 'tipo_processo', 'tipo', 'status', 'nr_processo', 'page'] as $filterKey) @if(request()->filled($filterKey)) @endif @endforeach
@include('components.tables._thead', ['thead' => [__('Arquivo'), __('Legenda'), __('Cliques'), __('Ações')]]) @forelse($registro->uploads as $upload) @empty @endforelse
{{ basename($upload->ds_arquivo) }}
@csrf @method('put') @foreach(['ano', 'tipo_processo', 'tipo', 'status', 'nr_processo', 'page'] as $filterKey) @if(request()->filled($filterKey)) @endif @endforeach
{{ $upload->qt_cliques }}
@csrf @method('delete') @foreach(['ano', 'tipo_processo', 'tipo', 'status', 'nr_processo', 'page'] as $filterKey) @if(request()->filled($filterKey)) @endif @endforeach
{{ __('Nenhum arquivo vinculado.') }}
@endsection