@extends(layoutTenant()) @section('content')

Documentos da Licitação {{$licitacoes->numero}}

@if ($errors->any())
@endif @if (session('success'))
{{ session('success') }}
@endif
Documentos
@foreach($categories as $category) @endforeach
Numero Nome Inserido por Funções
{{$licitacoes->numero}}
@if($category->nome == 1) PUBLICAÇÃO @endif @if($category->nome == 2) RECURSO EDITAL @endif @if($category->nome == 3) RESPOSTA DO RECURSO @endif @if($category->nome == 4) ATA DE JUGAMENTO @endif @if($category->nome == 5) EDITAL RETIFICADO @endif @if($category->nome == 6) REPUBLICAÇÂO EDITAL @endif @if($category->nome == 7) RECURSO JUGAMENTO @endif @if($category->nome == 8) CONTRA RECURSO @endif @if($category->nome == 9) ADJUDICAÇÃO/HOMOLOGAÇÃO @endif @if($category->nome == 10) EDITAL DE LICITAÇÃO @endif @if($category->nome == 11) RETIFICAÇÃO DO EDITAL @endif @if($category->nome == 12) ANEXOS DO EDITAL @endif @if($category->nome == 13) ESCLARECIMENTOS @endif @if($category->nome == 14) IMPUGNAÇÃO DO EDITAL @endif @if($category->nome == 15) PARECER SOBRE IMPUGNAÇÃO @endif @if($category->nome == 16) ARQUIVO DE PROPOSTA @endif @if($category->nome == 17) OUTROS @endif {{$category->user->name}}
Exibindo {{$categories->currentPage()}} até {{$categories->perPage()}} de {{$categories->count()}} linhas - {{$categories->perPage()}} registros por página
@if(isset($dataform)) {!! $categories->appends($dataform)->links() !!} @else {!! $categories->links() !!} @endif
Incluir Documentos na licitação
{!! Form::open(['url'=>routeTenant('documentos.store'),'enctype'=>'multipart/form-data', 'class'=>'form']) !!}
{!! Form::label('Nome', 'Tipo de documento:') !!} {!! Form::hidden('user_id', Auth::user()->id, ['class'=>'form-control']) !!} {!! Form::hidden('licitacao_id', $licitacoes->id, ['class'=>'form-control']) !!}
{!! Form::label('Nome', 'Documento:') !!}
{!! Form::label('Nome', 'Descrição:') !!} {!! Form::text('descricao', null, ['class'=>'form-control']) !!}
{!! Form::label('Nome', 'Solicitar Cadastro Para Baixar Documento:') !!}
{!! Form::submit('Incluir Licitação', ['class'=>'btn btn-primary']) !!} {!! Form::close() !!}
@endsection @section('post-script') @endsection