@extends('gatepass/layouts/default') @section('title') Interchanges @parent @stop {{-- Page content --}} @section('content')

Interchanges

@include('flash::message')

Interchanges List

{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargodetail->cargoheader->t1) !!}
{!! Form::label('truck', 'Truck:') !!}
{!! Form::label('truck', $cargodetail->cargoheader->trucks->plate_number) !!}
{!! Form::label('container', 'Container No:') !!}
{!! Form::label('container', $cargodetail->container_number) !!}
{!! Form::label('container_size', 'Container Size:') !!}
{!! Form::label('container_size', $cargodetail->container_size) !!}

{!! Form::open(['route' => 'gatepass.interchanges.store']) !!} @include('gatepass.interchanges.checklist')
Remark
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel
{!! Form::close() !!}
@stop