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

Cargo Header

Create New Cargodetail


{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargodeclaration->declaration_number) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargodeclaration->consignees->name) !!}
{!! Form::label('consignee', 'Transitor:') !!}
{!! Form::label('consignee',$cargodeclaration->transitors->name) !!}
{{-- {!! Form::open(['route' => 'gatepass.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.cargoheaders.store','id'=>'formdetail']) !!}
{!! Form::label('full_name', '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::close() !!}--}}
{!! Form::label('year', 'Year') !!}
{!! Form::text('year', 2023, ['class' => 'form-control']) !!}
{!! Form::label('t1', 'T1:') !!}
{!! Form::text('t1', null, ['class' => 'form-control']) !!}
{!! Form::label('plate_number', 'Plate Number:') !!}
{!! Form::text('plate_number', null, ['class' => 'form-control']) !!}
{!! Form::label('trailer_plate_number', 'Trailer Plate Number:') !!}
{!! Form::text('trailer_plate_number', null, ['class' => 'form-control']) !!}
{!! Form::label('cargotype', 'Cargo type:') !!} {!! Form::select('cargotype', $cargotype, 1, ['class' => 'form-control','id'=>'cargo_type']) !!}

@include('gatepass.cargoheaders.fields_detail') {!! Form::close() !!}
@stop @section('footer_scripts') @stop