@extends('layouts.app') @section('title', 'Air Freight') @section('breadcrumbs') @endsection @section('content')

Air Freight Bookings

Manage air cargo bookings and AWB tracking

New Booking
@php $stats = [['label' => 'Total', 'count' => $stats['total'] ?? 0, 'icon' => 'bi-airplane', 'color' => 'primary'], ['label' => 'In Transit', 'count' => $stats['in_transit'] ?? 0, 'icon' => 'bi-speedometer2', 'color' => 'info'], ['label' => 'Delivered', 'count' => $stats['delivered'] ?? 0, 'icon' => 'bi-check-circle-fill', 'color' => 'success'], ['label' => 'Pending', 'count' => $stats['pending'] ?? 0, 'icon' => 'bi-clock', 'color' => 'warning']]; @endphp @foreach($stats as $stat)
@endforeach
All Bookings
@forelse($bookings ?? [] as $booking) @empty @endforelse
AWB #AirlineOriginDestinationWeight (KGS)ETDETAStatusActions
{{ $booking->awb_number ?? 'N/A' }} {{ $booking->airline->name ?? 'N/A' }} {{ $booking->origin_port->code ?? 'N/A' }} {{ $booking->destination_port->code ?? 'N/A' }} {{ number_format($booking->gross_weight ?? 0, 2) }} {{ optional($booking->etd)->format('d M Y') ?? 'TBD' }} {{ optional($booking->eta)->format('d M Y') ?? 'TBD' }}

No air bookings found

@endsection @push('scripts') @endpush