@extends('admin.layouts.app') @section('title', 'Order Details - ' . $order->order_number) @section('header_title', 'Order #' . $order->order_number) @section('content')
Placed on {{ $order->created_at ? $order->created_at->format('M d, Y \a\t g:i A') : 'N/A' }}
| Item | SKU | Unit Price | Qty | Subtotal |
|---|---|---|---|---|
|
@if($item->product && $item->product->primary_image_url)
{{ $item->product_name }} @if($item->product) View in Catalog @endif |
{{ $item->sku ?? 'N/A' }} | ₹{{ number_format($item->price, 2) }} | ×{{ $item->quantity }} | ₹{{ number_format($item->subtotal, 2) }} |
{{ $order->shipping_address }}