# Invoice #{{ $invoiceNumber }}
Dear {{ $order->customer_first_name }} {{ $order->customer_last_name }},
Thank you for your order! Your invoice is attached to this email.
**Order Summary:**
- Order Number: {{ $order->order_number }}
- Order Date: {{ $order->created_at->format('d M Y') }}
- Total Amount: R {{ number_format($order->total, 2) }}
- Status: {{ ucfirst($order->status) }}
**Delivery Address:**
{{ $order->delivery_address_line1 }}
@if($order->delivery_address_line2)
{{ $order->delivery_address_line2 }}
@endif
{{ $order->delivery_city }}, {{ $order->delivery_province }} {{ $order->delivery_postal_code }}
If you have any questions about your order, please don't hesitate to contact us.
Visit Our Website
Thanks,
{{ config('app.name') }} Team