@extends('layouts.dmeadmin.master') @section('user_ship_manage') active @endsection @section('content')
{{ Form::open(array('class'=>'form')) }}
{{ Form::text('ship_name', @$input['ship_name'], array('class'=>'form-control','placeholder'=>'Vessel Name')) }}
{{ Form::text('imo_number',@$input['imo_number'], array('class'=>'form-control','placeholder'=>'IMO')) }}
{{ Form::text('ship_type',@$input['ship_type'], array('class'=>'form-control','placeholder'=>'AIS Type')) }}
{{ Form::text('mmsi',@$input['mmsi'], array('class'=>'form-control','placeholder'=>'MMSI')) }}
{{ Form::close() }}
@if(count($shiprecords)>0) @foreach($shiprecords as $val) @endforeach @else {{ "" }} @endif
Vessel Name IMO AIS Type MMSI Gross Tonnage Deadweight Year Built Status Action
{{ucwords($val->ship_name)}} {{$val->imo_number}} {{$val->ship_type}} {{$val->mmsi}} {{$val->gross_tonnage}} {{$val->deadweight}} {{$val->yearbuild}}
{{"Edit Ship"}}

Oops.! No Records Found !!