@extends('layouts.app') @section('page_title') Book Shipment — Order #{{ $order->order_number }} @endsection @section('page_subtitle') Verify dimensions, check courier serviceability, assign AWB number, and book shipment @endsection @section('content')
@csrf
{{-- Left Column: Order Details & Dimensions --}}
{{-- Order details card --}}

Order Details

Customer Name {{ $order->customer_name }}
Phone Number {{ $order->customer_phone ?: '—' }}
Shipping Address {{ $order->shipping_address ?: '—' }}
Order Date {{ optional($order->order_date)->format('d M Y') }}
Total Value ₹{{ number_format($order->amount, 2) }}
{{-- Dimensions card --}}

Package Dimensions & Weight

{{-- Right Column: Serviceability, Couriers, and AWB --}}
{{-- Courier serviceability card --}}

Serviceability & Couriers

{{-- Serviceable couriers container --}}
{{-- Injected dynamically --}}
{{-- AWB generator card --}}

AWB / Tracking Number Assignment

{{-- Action Panel --}}
Cancel
@endsection