@extends('layouts.app') @section('title', 'Export Bookings') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')
Manage shipping bookings and reservations
| Booking # | Order # | Shipping Line | Vessel / Voyage | ETD | Containers | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $booking->booking_number }} | {{ $booking->order->order_number ?? 'N/A' }} | {{ $booking->shippingLine->name ?? 'N/A' }} | {{ $booking->vessel_name ?? '-' }} V.{{ $booking->voyage_number ?? '-' }} | {{ optional($booking->etd)->format('d M Y') ?? 'TBD' }} | {{ $booking->no_of_containers ?? 0 }} x {{ strtoupper($booking->container_size ?? '') }} | @php $bStatus = ['draft' => 'secondary', 'requested' => 'info', 'confirmed' => 'success', 'cancelled' => 'danger']; @endphp {{ ucfirst($booking->status) }} |
|
No bookings found | |||||||