Order Details (Order ID: {{ $order->id }})
Order Placed On
{{ $order->created_at->format('d M, Y h:i A') }}
Order Items
| Item Image | Quantity | Price |
|---|---|---|
|
@if($item->product && $item->product->getFirstMediaUrl('product_image'))
|
{{ $item->quantity ?? 0 }} | ${{ number_format($item->price, 2) }} |
| Total Quantity | {{ $totalQuantity }} | Total Price: ${{ number_format($total, 2) }} |
Shipping Address
| Address | City | State | Zip Code |
|---|---|---|---|
| {{ $order->user->address ?? '-' }} | {{ $order->user->city ?? '-' }} | {{ $state_name ?? '-' }} | {{ $order->user->zip_code ?? '-' }} |
Customer Details
Name: {{ $order->user->name ?? '-' }}
Email: {{ $order->user->email ?? '-' }}
Phone: {{ $order->user->phone_number ?? '-' }}