@extends('layouts.app') @section('title', 'Booking Details') @section('page-wrapper')
{{ $booking->CourierSetups->business_name }} ({{ $booking->CourierSetups->account_type }})
{{ $booking->sender_name }}
{{ $booking->sender_address }}, {{ $booking->senderCity->CityName ?? '' }},
{{ $booking->senderState->StateName ?? '' }}, {{ $booking->sender_pincode ?? '' }}
{{ $booking->sender_mobile }}
{{ $booking->receiver_name ?? 'N/A' }}
{{ $booking->receiver_address ?? '' }}, {{ $booking->receiverCity->CityName ?? '' }},
{{ $booking->receiverState->StateName ?? '' }}, {{ $booking->receiver_pincode ?? '' }}
{{ $booking->receiver_mobile }}
| # | No of Boxes | Eway Bill | Invoice No | Invoice Amount | Dimensions (L×W×H in cm) |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $dimension['box_count'] ?? '-' }} | {{ $dimension['eway_bill'] ?? '-' }} | {{ $dimension['inv_num'] ?? '-' }} | {{ $dimension['inv_amt'] ?? '-' }} | {{ $dimension['length_cm'] ?? 'N/A' }} × {{ $dimension['width_cm'] ?? 'N/A' }} × {{ $dimension['height_cm'] ?? 'N/A' }} |
| # | Dimensions (L×W×H in cm) |
|---|---|
| {{ $index + 1 }} | {{ $dimension['length_cm'] ?? 'N/A' }} × {{ $dimension['width_cm'] ?? 'N/A' }} × {{ $dimension['height_cm'] ?? 'N/A' }} |
No dimensions available.
@endifLR Number: {{ $booking->airway_number }}
@if ($booking->shipment_weight)Shipment Weight: {{ $booking->shipment_weight ?? 'N/A' }}
@endif @if ($booking->shipment_total_box_count)Shipment Box Count: {{ $booking->shipment_total_box_count ?? 'N/A' }}
@endif @if ($booking->shipment_description)Shipment Description: {{ $booking->shipment_description ?? 'N/A' }}
@endif @if ($booking->freight_mode)Freight Mode: {{ $booking->freight_mode ?? 'N/A' }}
@endif @if ($booking->rov_insurance)Insurance: {{ $booking->rov_insurance ? 'Delivery' : 'Owner' }}
@endif @if ($booking->shipment_type)Shipment Type: {{ $booking->shipment_type ?? 'N/A' }}
@endif @if ($booking->date)Date: {{ \Carbon\Carbon::parse($booking->date)->format('d M Y') ?? 'N/A' }}
@endif{{ $booking['warehouse']->name ?? 'N/A' }}
{{ $booking['warehouse']->address ?? '' }},
{{ $booking['warehouse']->city->CityName ?? '' }},
{{ $booking['warehouse']->state->StateName ?? '' }},
{{ $booking['warehouse']->pin ?? '' }}
{{ $booking['warehouse']->phone }}