{{-- Header --}}

Order Details

Detailed View of all Orders in this shipment consolidation.

{{-- USER SECTION --}}
{{ strtoupper(substr($user->customer_name ?? 'U', 0, 1)) }}
{{ $user->customer_name ?? 'Unknown Customer' }}

{{ $user->company_name ?? 'N/A Company' }}

{{ $user->email ?? '' }}

{{ $user->mobile_no ?? '' }}

{{ $user->address ?? 'No Address' }}

{{ $user->pincode ?? '' }}
{{-- ORDER SUMMARY --}}

Order ID

{{ $order->order_id }}

Total Orders

{{ $order->items->count() }}

Status

{{ ucfirst($order->status) }}
{{-- ITEMS TABLE --}}
@foreach($order->items as $index => $item) @endforeach
# Description CTN QTY TTL/QTY Unit Price (₹) TTL Amount (₹) CBM TTL CBM KG TTL KG Shop No
{{ $index + 1 }} {{ $item->description }} {{ $item->ctn }} {{ $item->qty }} {{ $item->ttl_qty }} {{ strtoupper($item->unit) }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->ttl_amount, 2) }} {{ $item->cbm }} {{ $item->ttl_cbm }} {{ $item->kg }} {{ $item->ttl_kg }} {{ $item->shop_no }}
{{-- TOTALS --}}

{{ $order->ttl_qty }}

Total TTL/QTY

{{ $order->ttl_kg }}

Total TTL KG

₹{{ number_format($order->ttl_amount, 2) }}

Total Amount