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

Cargo Details

@include('flash::message')

Cargo Details

{{-- --}}

{!! Form::open(['route' => 'gatepass.cargodetails.search']) !!}
Search
{{-- --}}
using T1 search from detailed cargo
{!! Form::close() !!} @if(isset($cargodetails))
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargoheaders->t1) !!}
{!! Form::label('truck', 'Truck:') !!}
{!! Form::label('truck', $cargoheaders->plate_number) !!}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargoheaders->declaration_number) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargoheaders->consignee) !!}
{!! Form::label('consignee', 'Transitor:') !!}
{!! Form::label('consignee',$cargoheaders->transitor) !!}

@include('gatepass.cargodetails.table') @endif
@stop