@extends('layouts.app') @section('title', 'AWB Tracking Details') @section('page-wrapper')

Sender Details

Name
{{ $booking->sender_name }}
Mobile
{{ $booking->sender_mobile }}
Address
{{ $booking->sender_address }}, {{ $booking->senderCity->CityName }}, {{ $booking->senderState->StateName }}, {{ $booking->sender_pincode }}

Receiver Details

Name
{{ $booking->receiver_name }}
Mobile
{{ $booking->receiver_mobile }}
Address
{{ $booking->receiver_address }}, {{ $booking->receiverCity->CityName }}, {{ $booking->receiverstate->StateName }}, {{ $booking->receiver_pincode }}

Warehouse Details

Name
{{ ucwords(strtolower($booking->warehouse->name)) }}
Mobile
{{ $booking->warehouse->phone }}
Address
{{ $booking->warehouse->address }}, {{ $booking->warehouse->city->CityName }}, {{ $booking->warehouse->state->StateName }}, {{ $booking->warehouse->pin }}

Package Details

@if ($booking->booking_type == 'B2B') @endif @foreach ($booking->dimension as $key => $dimension) @if ($booking->booking_type == 'B2B') @endif @endforeach
#No of Boxes Eway Bill Invoice No Invoice AmountDimensions (L×W×H in cm)
{{ (int) $key + 1 }}{{ $dimension->box_count }} {{ $dimension->eway_bill }} {{ $dimension->inv_num }} {{ $dimension->inv_amt }} {{ $dimension->length_cm }} × {{ $dimension->width_cm }} × {{ $dimension->height_cm }}
@if ($booking->booking_type == 'B2B')

Documents Details

@foreach ($booking->bookingDocuments as $doc)
Document View Document
@endforeach
@endif
Loading shipment info...

AWB Details ({{ $booking->airway_number }})

Courier:
{{ $booking->Couriers->name }}
Courier Setup:
{{ ucwords(strtolower($booking->CourierSetups->business_name)) }} ({{ $booking->booking_type }})
Date:
{{ \App\Helpers\DateHelper::formatDate($booking->date, 'd M Y') }}
Insurance:
{{ $booking->rov_insurance == 'true' ? 'Delivery' : 'Owner' }}
@if ($booking->booking_type == 'B2C')
Shipment Type:
{{ $booking->shipment_type }}
@endif
Shipment Weight:
{{ $booking->shipment_weight }}
Shipment Box Count:
{{ $booking->shipment_total_box_count }}
@if ($booking->booking_type == 'B2B')
Freight Mode:
{{ strtoupper($booking->freight_mode) }}
Shipment Description:
{{ $booking->shipment_description }}
@endif
Total Cost:
₹ {{ \App\Helpers\DateHelper::formatIndianAmount($booking->booking_amount) }}
@endsection @section('scripts') @endsection