@foreach($cargoheaders as $cargoheader)
{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargoheader->t1) !!}
{!! Form::label('declaration', 'Declaration No:') !!}
{!! Form::label('declaration', $cargoheader->cargodeclarations->declaration_number) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargoheader->cargodeclarations->consignees->name) !!}
{!! Form::label('consignee', 'Transit:') !!}
{!! Form::label('consignee',$cargoheader->cargodeclarations->transitors->name) !!}
@endforeach
@foreach($bills as $bill) @endforeach
T1 SSR Bill Status Prepared By Accepted Accepted Date Approved Approved Date Invoice
{!! $bill->cargoheader->t1 !!} {{ $bill->workorder->servicetype->name}} {!! $bill->billstatus->name !!} {!! $bill->officers->full_name !!} @if($bill->acceptedby) {!! $bill->acceptedby->full_name !!} @endif {!! \Carbon\Carbon::parse($bill->accepted_date)->format('Y-m-d') !!} @if($bill->approved_by) {!! $bill->approvedby->full_name !!} @endif {!! \Carbon\Carbon::parse($bill->approved_date)->format('Y-m-d') !!} {!! $bill->remark !!}