@extends('master') @section('title') Invoice Report @endsection @section('content')
@if (Session::has('success'))
@elseif (Session::has('danger'))
@endif
@csrf
@foreach ($booking as $data) @endforeach
Track No Origin Destination Shiper Consignee Weight(KG) Charge Collect Charge Amount
{{ $data->booking_no }} {{ $data->origins->name ?? '' }} {{ $data->destinations->name ?? '' }} {{ $data->shipper }} {{ $data->consignee }} {{ $data->weights->weight ?? '' }} {{ $data->charge }} {{ $data->collect_amount }}
Total :      {{ $total_charge }}    {{ $total_collect }}
@endsection