@extends('master') @section('title') Booking Transfer @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 Status
{{ $data->booking_no }} {{ $data->origins->name ?? '' }} {{ $data->destinations->name ?? '' }} {{ $data->shipper }} {{ $data->consignee }} {{ $data->weights->weight ?? '' }} {{ $data->charge }} {{ $data->collect_amount }} {{ $data->status }}
Total :      {{ $total_charge }}    {{ $total_collect }}
@endsection