{{ $tenantCountry }}
Invoice #{{ $order->order_number }}
Hello {{ $customerName }},
Thank you for your order. Here is a summary of your purchase. You can also download your full invoice using the button below.
| Order Summary | |
|---|---|
| Order Number | #{{ $order->order_number }} |
| Order Date | {{ $order->created_at->format('d M Y, H:i') }} |
| Payment Method | {{ $order->payment_method?->label() }} |
| Delivery Method | {{ $order->delivery_method?->label() }} |
| Discount | -{{ number_format((float) $order->total_discount_amount, 2) }} {{ $currency }} |
| Shipping | {{ number_format((float) $order->shipping_amount, 2) }} {{ $currency }} |
| Tax | {{ number_format((float) $order->tax_amount, 2) }} {{ $currency }} |
| Total Amount | {{ number_format((float) $order->total_amount, 2) }} {{ $currency }} |