@foreach($talleyins as $key=>$talleyin)
{!! Form::label('service_type', 'Service Type:') !!}
{!! Form::label('service_type', $talleyin->workorder->servicetype->name) !!}
{!! Form::label('description', 'Description:') !!}
{!! Form::label('description', $talleyin->description) !!}
{!! Form::label('quantity', 'Quantity:') !!}
{!! Form::label('quantity', $talleyin->quantity.' '.$talleyin->measurments->name) !!}
{!! Form::label('package_weight', 'Package Weight:') !!}
{!! Form::label('package_weight', $talleyin->package_weight) !!}
{!! Form::label('weight', 'Weight:') !!}
{!! Form::label('weight', $talleyin->weight) !!}
{!! Form::label('received_date', 'Received Date:') !!}
{!! Form::label('received_date',$talleyin->received_date) !!}
@foreach($talleyouts[$key] as $talley) @endforeach
Performed by Labour Assoc Qty Truck Info Delivered date Delivered By Action
{!! $talley->performedby->name !!} {!! $talley->labourassociation->name !!} {!! $talley->quantity !!} {!! $talley->gatepassin->drivers->full_name !!} {!! $talley->gatepassin->trucks->plate_number !!}/{!! $talley->gatepassin->trucks->trailer_plate_number !!} {!! $talley->created_at !!} {!! $talley->officers->getFullNameAttribute() !!}
@endforeach