@extends('layouts.layout_pagina', [ 'icone_titulo'=>'fas fa-exchange-alt', 'titulo'=>'Tramitação de Processos', 'breadcrumb'=>['Tramitação','Controle'] ]) @section('css') @endsection @section('scripts') @endsection @section('pagina')
@csrf

EMSERH - {{$vidsetor}}

@foreach($listprocesso as $list) @endforeach
Id Processo Data Setor LocalAtual
{{$list->getId()}} {{$list->getProcesso()}} {{$list->getDtprocesso()}} {{$list->Setor->getSetor()}} {{$list->Setor2->getsetor()}} @if($vidsetor == $list->Setor2->getSetor()) @endif
@include('partials._modal_form', [ 'titulo'=> '', 'icone'=>'fa-laptop', 'largura'=>'1200', 'rota' => 'tramitacao.controle.salvar', 'campos'=> [ [ 'tipo'=>'array', 'campos'=> [ [ 'largura'=>'5', 'id' =>'dtProcesso', 'label'=>'Data Processo', 'nome'=>'dtProcesso', 'tamanho'=>'5', 'tipo'=>'data', 'required'=> true, 'autofocus'=> true, 'disabled'=>true ], [ 'largura'=>'7', 'id' =>'txtSetor', 'label'=>'Setor', 'nome'=>'txtSetor', 'tipo'=>'combo', 'default'=>'Selecione um setor', 'opcoes'=>$vsetor, 'required'=> false, ] ] ], [ 'tipo'=>'array', 'campos'=> [ [ 'largura'=>'12', 'id' =>'txtObjeto', 'label'=>'Motivo', 'nome'=>'txtObjeto', 'tamanho'=>'450', 'tipo'=>'textarea', 'rows'=>'3', 'required'=> false, 'disabled'=>false ] ] ] ] ]) @endsection