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

Cargodetails

@include('flash::message')

Cargo Details

{{-- --}}

{!! Form::open(['route' => 'gatepass.cargodetails.search']) !!}
Search
{{-- --}}
using T1 search from detailed cargo
{!! Form::close() !!} @if(isset($cargoheaders))
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargoheaders->t1) !!}
{!! Form::label('truck', 'Truck:') !!}
{!! Form::label('truck', $cargoheaders->trucks->plate_number) !!}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargoheaders->cargodeclarations->declaration_number) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargoheaders->cargodeclarations->consignees->name) !!}
{!! Form::label('consignee', 'Transitor:') !!}
{!! Form::label('consignee',$cargoheaders->cargodeclarations->transitors->name) !!}
{{--
--}} {!! Form::model($cargoheaders, ['route' => ['gatepass.cargodetails.confirm',$cargoheaders->id ], 'method' => 'patch']) !!}
{!! $created_date !!}
{!! $confirm !!}
{!! Form::close() !!}
{{-- {!! Form::model($cargoheaders, ['route' => ['gatepass.cargodetails.report',$cargoheaders->id ], 'method' => 'patch']) !!}--}} {!! $report !!} {{-- {!! Form::close() !!}--}}
{{--
--}} {{--
--}}
{{-- {!! Form::model($cargoheaders, ['route' => ['gatepass.cargodetails.interchange',$cargoheaders->id ], 'method' => 'patch']) !!}--}} {!! $interchange !!} {{-- {!! Form::close() !!}--}}
@if(isset($cargoout)) {!! $cargoout !!} @endif
{{--
--}} {{--
--}}

@if(isset($cargodetails)) @include('gatepass.cargodetails.table') @endif @endif
@stop