@extends('layouts.digitar') @section('Breadcrumbs') {!! Breadcrumbs::render('documents.list') !!} @endsection @section('content') @php $url = $_SERVER['HTTP_HOST']; @endphp
@csrf





{!! Form::label('owner_id', 'Responsável:') !!} {!! Form::select('owner_id', $assemblymensList, $form->input('owner_id'), [ 'class' => 'form-control', 'id' => 'assemblymanSelect', ]) !!} {!! Form::select( 'document_type_id[]', $documents_type, $form->input('document_type_id'), [ 'class' => 'documentChosen', 'id' => 'multiple-select-clear-field', 'multiple', 'style' => 'width:100%;border:0;', 'data-placeholder' => 'Selecione o tipo...', ], ) !!}

{!! Form::label('id_entidade', 'Entidade') !!} {!! Form::select('id_entidade', $entitys, $form->input('id_entidade'), [ 'class' => 'form-control', ]) !!}

{!! Form::label('id_people', 'Fornecedor') !!} {!! Form::select('id_people', $people, $form->input('id_people'), ['class' => 'form-control']) !!}
{{ Form::text('first_num', $form->input('first_num'), [ 'placeholder' => '0', 'id' => 'first_num', ]) }}

A

{{ Form::text('second_num', $form->input('second_num'), [ 'placeholder' => '0', 'id' => 'second_num', ]) }}
{{ Form::text('first_ord_num', $form->input('first_ord_num'), [ 'placeholder' => '0', 'id' => 'first_ord_num', ]) }}

A

{{ Form::text('second_ord_num', $form->input('second_ord_num'), [ 'placeholder' => '0', 'id' => 'second_ord_num', ]) }}

@foreach ($documents as $documentModel) @endforeach
Descrição Assinatura Anexos Scanner Tramitação Download Anexos
@shield('document.read') @if ($url == 'cmcorumba.localhost:8000' || $url == 'cmcorumba.legissuper.com.br') @if (Auth::user()->sector_id == 1) @endif @else @endif @endshield @shield('document.approved') @endshield
Informações

{!! $documents->appends(request()->input())->render() !!}
@include('documents.modalAdvacedSearch') @endsection