@extends('master') @section('title') Head Office Collect @endsection @section('content') @if (Session::has('success'))
@elseif (Session::has('danger'))
@endif
{{--
--}}
{{--
--}}
@csrf
{{--
@foreach ($collect as $data) @endforeach
Invoice No Agent Name Status Action
{{ $data->invoice_no }} {{ $data->agents->name }} {{ $data->status }}
--}}
@foreach ($booking as $data) @endforeach
Track no Origin Destination Weight(KG) Charge Shiper Consignee Amount Collected Status
{{ $data->booking_no }} {{ $data->origins->name ?? '' }} {{ $data->destinations->name ?? '' }} {{ $data->weights->weight ?? '' }} {{ $data->charge }} {{ $data->shipper }} {{ $data->consignee }} {{ $data->bill_amount }} {{ $data->collect_amount }} {{ $data->status }}
{{--
--}}
@endsection