@extends('layout.padrao') @section('title', 'Allocation Position') @section('content')
Search For:
{{ csrf_field() }} {!! Form::text('tipoAllocation', 'allocation', ['class' => 'form-control', 'hidden'=>'hidden']) !!}
{!! Form::label('booking', 'Booking N.:', [ 'class' => 'w-100 control-label']) !!} {!! Form::text('booking', old('booking',null), ['class' => 'form-control booking']) !!}
{!! Form::label('cargooReference', 'Cargoo Ref.:', [ 'class' => 'w-100 control-label']) !!} {!! Form::text('cargooReference', old('cargooReference',null), ['class' => 'form-control cargooReference']) !!}
{!! Form::label('week', 'Week:', [ 'class' => 'w-100 control-label']) !!} {!! Form::week('week', old('week',null), ['class' => 'form-control week']) !!}
{!! Form::select('carriers_id[]', $select['carrier'], old('carriers_id',$returnSearchSelect['carriers']), ['class' => 'form-control carriers_id','style'=>'margin-right: 5px !important; font-weight: normal;margin-top: 7px;','multiple'=>'multiple']) !!}
{!! Form::select('platforms_id[]', $select['platform'], old('platforms_id', $returnSearchSelect['plataforms']), ['class' => 'form-control platforms_id','style'=>'margin-right: 5px !important; font-weight: normal;margin-top: 7px;', 'id' =>'searchclear','multiple'=>'multiple']) !!}
{!! Form::select('loadingPort[]', $select['loadingPort'], old('loadingPort',$returnSearchSelect['pol']), ['class' => 'form-control loadingPort','style'=>'margin-right: 5px !important; font-weight: normal;margin-top: 7px;','multiple'=>'multiple']) !!}
{!! Form::select('clients_id[]', $select['client'], $returnSearchSelect['clients'], ['class' => 'clients_id form-control ','multiple'=>'multiple']) !!}
{!! Form::select('shippers_id[]', $select['shipper'], $returnSearchSelect['shipper'], ['class' => 'shippers_id form-control ','multiple'=>'multiple']) !!}
{!! Form::select('routes_id[]', $select['routes'], $returnSearchSelect['routes'], ['class' => 'routes_id form-control','multiple'=>'multiple']) !!}
{!! Form::select('destinationPort[]', $select['destinationPort'], $returnSearchSelect['Ports'], ['class' => 'form-control destinationPort','id'=>'destinationPort2', 'style'=>'margin-right: 5px !important; font-weight: normal;margin-top: 7px;','multiple'=>'multiple']) !!}
Open Shipments: {{$totais['processos']}} Container Qty: {{$totais['containerQty']}} TEU's:{{$totais['countTeus']}} @include('include.filtro_result')
@include('allocation.table',$registers)
@include('bibliotecas.floattheadOverflow') @include('include.modal_delete_reason', ["rota" => "loadingPlan"]) @include('allocation.modal_commercial_edit', ["rota" => "loadingPlan"]) @include('include.modal_deletar', ["rota" => "CancelStandByStatus"]) @include('include.modal_reason', ["rota" => "LoadingTransfer"]) @include('include.modal_history') @include('allocation.script') @endSection