30 lines
865 B
PHP
30 lines
865 B
PHP
<x-mail::message>
|
|
# 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.
|
|
|
|
<x-mail::button :url="config('app.url')">
|
|
Visit Our Website
|
|
</x-mail::button>
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }} Team
|
|
</x-mail::message>
|