Customer
{{ $order->user->name }}
{{ $order->user->email }}
Status
Discount Code
{{ $order->discount_code ?? 'None' }}
Total
${{ number_format($order->total, 2) }}
| Product | Quantity | Price | Subtotal |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | ${{ number_format($item->price, 2) }} | ${{ number_format($item->subtotal, 2) }} |