@extends('layouts.app') @section('title', 'Order ' . $order->order_number) @section('content')
Placed on {{ $order->order_date->format('M j, Y g:i A') }}
Seller: {{ $item->product->user->company_name ?? $item->product->user->name }}
${{ number_format($item->unit_price, 2) }}
Qty: {{ $item->quantity }}
${{ number_format($item->total_price, 2) }}
{{ $order->shipping_address }}
{{ $order->notes ?: 'No special instructions' }}
Awaiting Payment
Please complete your payment using the selected payment method. The seller will process your order once payment is confirmed.
{{ $order->seller->company_name ?? $order->seller->name }}
Seller
{{ $order->buyer->name }}
Buyer