SHIP TO ADDRESS
{{ $order->customer_name }}
{{ $order->shipping_address }}
{{ $order->city }}, {{ $order->state }} — PIN: {{ $order->pincode }}
Mobile Phone: {{ $order->customer_phone }} | Email: {{ $order->customer_email }}
Payment Type: {{ strtoupper($order->payment_status === 'pending' ? 'CASH ON DELIVERY (COD)' : 'PREPAID ONLINE') }}
Package Items List (Total: {{ $order->items->sum('quantity') }} Items)
| S.No |
Item Description |
Size / Variant |
Qty |
@foreach($order->items as $idx => $item)
| {{ $idx + 1 }} |
{{ $item->product_name }}
|
{{ $item->size ?? 'Standard' }} |
{{ $item->quantity }} |
@endforeach
@if($order->notes)
⚠️ Customer Packing Note: "{{ $order->notes }}"
@endif