Work order: {{ $workorder->servicetype->name }}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargodetail->cargoheader->cargodeclarations->declaration_number) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargodetail->cargoheader->cargodeclarations->consignees->name) !!}
{!! Form::label('consignee', 'Transitor:') !!}
{!! Form::label('consignee',$cargodetail->cargoheader->cargodeclarations->transitors->name) !!}
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargodetail->cargoheader->t1) !!}
{!! Form::label('cargo_type', 'Cargo type:') !!}
{!! Form::label('cargo_type', $cargodetail->cargotype->name) !!}
{!! Form::label('cargo_info', 'Cargo Info:') !!}
@if( $cargodetail->container_number)
{!! Form::label('bb_type', $cargodetail->container_number ."-". $cargodetail->container_type."[".$cargodetail->container_size."]") !!}
@else
{!! Form::label('bb_type', $cargodetail->bb_type) !!}
@endif
{!! Form::open(['route' => 'cfs.talleycfs.store']) !!}
{!! Form::label('performed_by', 'Performed by:') !!}
{!! Form::select('performed_by', $performedby,null, ['class' => 'form-control']) !!}
{!! Form::label('labour_association', 'Labour Association:') !!}
{!! Form::select('labour_association', $labourassociation,null, ['class' => 'form-control quantity']) !!}
{!! Form::label('uom', 'UoM:') !!}
{!! Form::select('uom', $uom,null, ['class' => 'form-control']) !!}
{!! Form::label('Detail Count', 'Detail Count:') !!}
{!! Form::label('weight', 'Weight:') !!}
{!! Form::text('weight', $cargodetail->weight, ['class' => 'form-control']) !!}
{!! Form::label('quantity', 'Quantity:') !!}
{!! Form::text('quantity', $cargodetail->quantity, ['class' => 'form-control']) !!}
{!! Form::label('description', 'Description Of Good:') !!}
{!! Form::text('description', $cargodetail->description_of_good, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
Cancel
{!! Form::close() !!}