@extends('layouts.template') @section('content')

Order Booking : @if(Auth::user()->logistic_type == '2') Export @endif @if(Auth::user()->logistic_type == '1') Import @endif

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
@foreach($check as $s) @php $filter=$s; @endphp @endforeach

Vessel Records

{!! Form::open(['method' => 'GET', 'route' => 'logistic.order.vessel','id'=> 'form2','style' => 'display:inline']) !!} Show All {!! Form::close()!!}
Add New Vessel
@foreach($vessel as $item) @endforeach
{{----}}# SLPortCSVesselVoyageVgmMROpenCloseEtaBerthEtdDepatureStorage StartStatusActions
{!! Form::checkbox("status[]",$item->id,false,['class'=>'vessel_status']) !!} {{ $item->shipping_line['name'] }} {{ $item->ports['port_name'] }} {{ $item->call_sign }} {{ $item->vessel }} {{ $item->voyage }} {{ $item->vgm_wrap }} {{ $item->mates_receipt_wrap }} {{ $item->stack_open_wrap }} {{ $item->stack_close_wrap }} {{ $item->eta_wrap }} {{ $item->berth_wrap }} {{ $item->etd_wrap }} {{ $item->depature_wrap }} 13/01/70 {!! $item->status == 0 ? 'Inactive' : 'Active' !!} {!! Form::open([ 'method'=>'DELETE', 'route' => ['logistic.order.vessel.destroy', $item->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'title' => 'Delete Vessel', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!}
@if( app('request')->input('checkboxitem') == 'on') @else @endif {!! Html::script('app/js/bootstrap3-typeahead.min.js') !!} @endsection