@extends('layouts.app') @section('title', 'Air Booking #'.optional($booking)->awb_number) @section('breadcrumbs') @endsection @section('content')
{{ $booking->airline->name ?? '' }} | {{ $booking->origin_port->code ?? '' }} → {{ $booking->destination_port->code ?? '' }}
| AWB # | {{ $booking->awb_number ?? 'N/A' }} |
| Airline | {{ $booking->airline->name ?? 'N/A' }} |
| Date | {{ optional($booking->booking_date)->format('d M Y') ?? 'N/A' }} |
| Status |
| Origin | {{ $booking->origin_port->name ?? 'N/A' }} |
| Destination | {{ $booking->destination_port->name ?? 'N/A' }} |
| ETD | {{ optional($booking->etd)->format('d M Y H:i') ?? 'TBD' }} |
| ETA | {{ optional($booking->eta)->format('d M Y H:i') ?? 'TBD' }} |
| Commodity | {{ $booking->commodity ?? 'N/A' }} |
| Pieces | {{ $booking->piece_count ?? 0 }} |
| Gross Weight | {{ number_format($booking->gross_weight ?? 0, 2) }} KGS |
| Chargable Weight | {{ number_format($booking->chargeable_weight ?? 0, 2) }} KGS |
Flight tracking information will appear here