@extends('layouts.admin') @section('title', 'Order Details #' . $order->order_number) @section('content')
← Back to Orders

Order #{{ $order->order_number }}

Tax Invoice Packing Slip Status: {{ ucfirst($order->order_status) }}

Purchased Items

@foreach($order->items as $item) @endforeach
Item Details Variant Unit Price Qty Subtotal
{{ $item->product_name }} {{ $item->size ?? 'Standard' }} ₹{{ number_format($item->price, 2) }} x {{ $item->quantity }} ₹{{ number_format($item->subtotal, 2) }}
@if($order->coupon_code)
Discount Coupon ({{ $order->coupon_code }}): - ₹{{ number_format($order->discount_amount, 2) }}
@endif
Total Amount Paid / Due: ₹{{ number_format($order->total_amount, 2) }}

Customer Shipping & Delivery Address

Recipient: {{ $order->customer_name }}
Phone: {{ $order->customer_phone }}
Email: {{ $order->customer_email }}
Address: {{ $order->shipping_address }}
City & State: {{ $order->city }}, {{ $order->state }} - {{ $order->pincode }}
@if($order->notes)
Customer Note: "{{ $order->notes }}"
@endif

Fulfillment & Status

@csrf
Placed on: {{ $order->created_at->format('F d, Y \a\t h:i A') }}
Payment Method: {{ strtoupper($order->payment_method) }}
@endsection