@extends('layouts.app') @section('title', 'Order #' . $order->order_number) @section('content')
Placed on {{ $order->created_at->format('M d, Y H:i') }}
Method: {{ ucfirst($order->payment_method) }}
Status: {{ ucfirst($order->payment_status) }}
{{ $order->shipping_name }}
{{ $order->shipping_address }}
{{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_zip }}
{{ $order->shipping_country }}
{{ $item->product_name }}
Sold by: {{ $item->vendor->shop_name ?? 'N/A' }} | SKU: {{ $item->product_sku ?? 'N/A' }}
{{ $item->quantity }} × ${{ number_format($item->price, 2) }}
${{ number_format($item->subtotal, 2) }}