@yield('name')
@if($cliente->type != 'Client') @else @yield('fantasyName') @endif
{{ Form::open(array('method' => 'post', 'enctype'=>'multipart/form-data', 'route'=>'storeTemplate' , 'id'=>'templateCreate')) }} {{ csrf_field() }}

Create Template / Criação de Template

{!! Form::select('platforms_id', [null=>'------ Select Required ------']+$select['platform'], null, ['class' => 'form-control', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('anexo_types_id', [null=>'------ Select Required ------']+$select['anexo_types'], null, ['class' => 'form-control', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('cargo_types_id', [null=>'------ Select Required ------']+$select['cargo_types'], null, ['class' => 'form-control', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('u_n_s_id', [null=>'------ Select Required ------']+$select['u_n_s'], null, ['class' => 'form-control', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('multiplus[container_types_id][]', $select['containerTypes'], null, ['class' => 'form-control packingType', 'multiple'=>'multiple', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('multiplus[packing_types_id][]', $select['packing_types'], null, ['class' => 'form-control packingType', 'multiple'=>'multiple', 'onchange'=>'fieldEdited()']) !!}
{!! Form::select('stage', $select['stage'], null, ['class' => 'form-control', 'onchange'=>'fieldEdited()']) !!}
{!! Form::text('subject', null, ['class' => 'form-control', 'oninput'=>'fieldEdited()']) !!}
{!! Form::label('template', 'Template', [ 'class' => 'w-100 control-label']) !!} {!! Form::textarea('template', null, ['class' => 'form-control', 'oninput'=>'fieldEdited()', 'id' => 'editor1']) !!}

You can use the following tags to help build your template: #vessel - Vessel Name; #voyage - Voyage; #pol - Port of Loading; #pod - Port of Destination; #booking - Booking number; #product - Product choose; #grossweight - Grossweight Value; #un - UN name; #containerType - Type of Equipment; #containerQty - Container Quantity;
Obs: Remember to type it exactly the way that is written.

@if($templates)
@foreach($templates as $item) @endforeach
actions name anexo type product container type packing type un template insert date status
@can('delete', app\usuario::class) id}} data-toggle="modal" data-target="#delete" data-toggle="tooltip" data-placement="top" title="delete"> @endcan /home/tabexc29/qa.tabex.com.br/resources/views/Client/editIMOCargo.blade.php on line 103
');" class="icone-padding" data-toggle="modal" data-target="#mymodaltemplate" >
{{$item->name}} {{isset($item->anexo_types->descricao) ? $item->anexo_types->descricao : '-'}} {{isset($item->platforms->descricao) ? $item->platforms->descricao : '-'}} {{isset($item->container_types->descricao) ? $item->container_types->descricao : '-'}} {{isset($item->packing_types->descricao) ? $item->packing_types->descricao : '-'}} {{isset($item->u_n_s->code) ? $item->u_n_s->code . '-'. $item->u_n_s->descricao : '-'}} {{$item->created_at}} @if (isset($item->status)&&$item->status == "active") @else @endif
@include('bibliotecas.floattheadOverflow') @endif