relocating

This commit is contained in:
twotalesanimation
2025-12-30 20:59:58 +02:00
parent a898c35a39
commit e8e9b1f03c
117 changed files with 2104 additions and 8554 deletions
+29
View File
@@ -0,0 +1,29 @@
<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>