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

Vessel : {{ $vessel->id }}

{!! Form::open([ 'method'=>'DELETE', 'url' => ['admin/vessel', $vessel->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete Vessel', 'onclick'=>'return confirm("Confirm delete?")' ))!!} {!! Form::close() !!}

ID{{ $vessel->id }}
Shipping Line Id {{ $vessel->shipping_line['name'] }}
Vessel {{ $vessel->vessel }}
Voyage {{ $vessel->voyage }}
Eta {{ $vessel->eta_wrap }}
Etd {{ $vessel->etd_wrap }}
Berth {{ $vessel->berth_wrap }}
Call Sign {{ $vessel->call_sign }}
Vgm {{ $vessel->vgm_wrap }}
Mates Receipt {{ $vessel->mates_receipt_wrap }}
Stack Open {{ $vessel->stack_open_wrap }}
Stack Close {{ $vessel->stack_close_wrap }}
Depature {{ $vessel->depature_wrap }}
Status {!! $vessel->status == 0 ? 'Inactive' : 'Active' !!}
@endsection