Name: {{ $order->customer_name }}
Email: {{ $order->customer_email }}
Phone: {{ $order->customer_phone }}
@if($order->customer_address)Address: {{ $order->customer_address }}
@endif @if($order->notes)Notes: {{ $order->notes }}
@endif| Product | Quantity | Price | Subtotal |
|---|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | R{{ number_format($item->price, 2) }} | R{{ number_format($item->subtotal, 2) }} |
Order placed on {{ $order->created_at->format('F d, Y \a\t g:i A') }}