Order #{{ $order->id }} Details
Customer:{{ $order->user ? $order->user->first_name : 'No user found' }}
Status: {{ $order->status }}
Total: ${{ number_format($order->total_price, 2) }}
| Item Name | Quantity | Size | Color | Price | Subtotal | |
|---|---|---|---|---|---|---|
| {{ $item->product->product_name ?? '-' }} | {{ $item->quantity ?? '-' }} | {{ $item->size ?? '-' }} | @if($item->color == 'Select Color'){{ 'No Color' }} | @else{{ $item->color ?? '-' }} | @endif${{ number_format($item->price, 2) ?? '-'}} | ${{ number_format($item->quantity * $item->price, 2) ?? '-'}} |