{{-- Header --}}

{{ $tenantName }}

{{ $tenantCountry }}

{{-- Hero --}}

Order Confirmed! 🎉

Invoice #{{ $order->order_number }}

{{-- Body --}}

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 --}} @if ($order->discount_amount > 0) @endif @if ($order->shipping_amount > 0) @endif @if ($order->tax_amount > 0) @endif
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 }}
{{-- CTA to view/download invoice --}} @if ($invoiceUrl) @endif
{{-- Footer --}}