A new order has been placed on your website.
Order #: {{ $invoiceNumber ?? 'N/A' }}
Name: {{ $customerName ?? 'N/A' }}
Email: {{ $customerEmail ?? 'N/A' }}
Order Total: $ {{ isset($grandTotal) ? number_format($grandTotal, 2) : '0.00' }}
Order Date: {{ $orderDate ?? 'N/A' }}
| Product | Quantity | Price |
|---|---|---|
| {{ $item['name'] ?? 'Unknown Product' }} | {{ $item['quantity'] ?? 0 }} | ${{ isset($item['price']) ? number_format($item['price'], 2) : '0.00' }} |
| No items in this order | ||
| Subtotal: | ${{ number_format($subtotal, 2) }} | |
| Shipping: | ${{ number_format($shipping, 2) }} | |
| Tax: | ${{ number_format($tax, 2) }} | |
| Total: | ${{ isset($grandTotal) ? number_format($grandTotal, 2) : '0.00' }} | |
This is an automated notification. Please do not reply to this email.
© {{ date('Y') }} {{ config('app.name') ?? 'Upsence' }}. All rights reserved.