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

Shipper / Consignee / Notify : {{ $shipper->id }}

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

ID{{ $shipper->id }}
Name {{ $shipper->name }}
Type {{ $shipper->type }}
Status {!! $shipper->status == 0 ? 'Inactive' : 'Active' !!}
@endsection