@extends('gatepass/layouts/default') @section('title') Cargodetail @parent @stop @section('content') @include('common.errors')

Cargodetail

Create New CarCarrier RORO


@foreach($cargoheaders as $cargoheader) @endforeach
T1 Declaration No Consignee Transitor
{!! Form::label('t1', $cargoheader->t1) !!} {!! Form::label('declaration', $cargoheader->cargodeclarations->declaration_number) !!} {!! Form::label('consignee', $cargoheader->cargodeclarations->consignees->name) !!} {!! Form::label('consignee',$cargoheader->cargodeclarations->transitors->name) !!}
{{-- {!! Form::open(['route' => 'admin.cargoheaders.check']) !!}--}}
{!! Form::label('licence_no', 'Licence:') !!} {!! Form::text('licence_no', null, ['class' => 'form-control','id'=>'driver_licence', 'placeholder'=>'Driver licence no']) !!}
{!! Form::label('', '') !!}
{!! Form::submit('Check',['id'=>'check','class'=>'btn btn-sm btn-info']); !!}
{!! Form::open(['route' => 'gatepass.cargodetails.mass.store','id'=>'formdetail','target'=>'_blank']) !!} @foreach($cargoheaders as $cargoheader) @endforeach
{!! Form::label('full_name', 'Driver Full Name:') !!}
{!! Form::text('full_name', null, ['class' => 'form-control full_name']) !!}
{!! Form::label('licence_number', 'Licence number:') !!}
{!! Form::text('licence_number', null, ['class' => 'form-control licence_number']) !!}

{{-- --}} {!! Form::text('plate_front', $plate_front, ['class' => 'form-control','style'=>'padding-left: 30px']) !!}
{!! Form::label('plate_number', 'Plate Number:') !!}
{!! Form::text('plate_number', $plate_number, ['class' => 'form-control','style'=>'margin-left: -30px;']) !!}

{{-- --}} {!! Form::text('trailer_front', $trailer_front, ['class' => 'form-control','style'=>'padding-left: 30px']) !!}
{!! Form::label('trailer_plate_number', 'Trailer Plate Number:') !!}
{!! Form::text('trailer_plate_number', $trailer_plate_number, ['class' => 'form-control','style'=>'margin-left: -30px;']) !!}
{!! Form::label('Confirmed date', 'Confirmed date:') !!} {!! Form::date('created_date', date('Y-m-d'), ['class' => 'form-control']) !!}

{!! Form::label('weight', 'Weight:') !!} {!! Form::text('weight', $gross_weight, ['class' => 'form-control weight']) !!}
{!! Form::label('quantity', 'Quantity:') !!} {!! Form::text('quantity', $total_quantity, ['class' => 'form-control quantity']) !!}
{!! Form::label('description_of_good', 'Description Of Good:') !!} {!! Form::text('description_of_good', $good_description, ['class' => 'description_of_good form-control']) !!}
{!! Form::submit('Confirm & Gatepass', ['class' => 'btn btn-warning','id'=>'savedetail']) !!} Cancel
{!! Form::close() !!}
@stop @section('footer_scripts') @stop