@extends('master') @section('title') Datewise Bookings @endsection @section('content')
{{-- filter --}}
{{-- title --}}

{{ __('Select Date') }}

{{-- end title --}}
@csrf
@if (Session::has('danger'))
@endif @if ($filter)
@if (Auth::user()->role == 'Agent' || Auth::user()->role == 'Admin') @endif @foreach ($bookings as $data) @if (auth()->user()->role == 'Agent' || auth()->user()->role == 'Admin') @else @endif @endforeach
Track No Origin Destination Weight(KG) Charge Shiper Consignee Amount CollectedStatus
{{ $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 }}
@endif
@endsection