@extends('layouts.admin') @section('title', 'Order Details #' . $order->order_number) @section('content')
| 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) }} |