{{-- Header --}}
|
{{-- Status banner --}}
@php
$bannerStyles = [
'in-progress' => ['bg' => '#dbeafe', 'border' => '#93c5fd', 'text' => '#1e40af', 'sub' => '#1d4ed8', 'icon' => '🔧', 'label' => 'In Progress'],
'completed' => ['bg' => '#d1fae5', 'border' => '#6ee7b7', 'text' => '#065f46', 'sub' => '#047857', 'icon' => '✅', 'label' => 'Completed'],
'pending' => ['bg' => '#fef9c3', 'border' => '#fde047', 'text' => '#713f12', 'sub' => '#92400e', 'icon' => '⏳', 'label' => 'Pending'],
];
$s = $bannerStyles[$status] ?? $bannerStyles['pending'];
@endphp
| {{ $s['icon'] }} |
Order Status: {{ $s['label'] }}
Your order has been updated.
|
|
{{-- Body --}}
|
Hi {{ $quote->name }},
We wanted to let you know that the status of your order has been updated to
{{ $s['label'] }}.
{{-- Order summary --}}
|
Order Summary
|
| Name |
{{ $quote->name }} |
| Business |
{{ $quote->business_name }} |
@if (!empty($quote->services))
| Services |
{{ implode(', ', $quote->services) }} |
@endif
| Current Status |
{{ $s['label'] }} |
@if ($status === 'in-progress')
Our team is now actively working on your order. We will keep you updated as we make progress.
@elseif ($status === 'completed')
Your order has been completed. Thank you for choosing {{ config('app.name') }}. We hope you are satisfied with the results!
@endif
If you have any questions please reply to this email or contact us directly.
Regards, {{ config('app.name') }} Team
|
{{-- Footer --}}
|
{{ config('app.name') }} — No obligation, no spam.
|
|