@include('Admin.Emails.partials.email-styles')
@if(!empty($settings['logo'])) {{ $settings['business_name'] ?? 'Speedy Move' }} @else

{{ $settings['business_name'] ?? 'Speedy Move' }}

@endif

@if(isset($isRemainingPayment) && $isRemainingPayment) Remaining Amount Payment Completed @else Order Confirmation @endif

Dear {{ $user->name ?? 'Customer' }},

@if(isset($isRemainingPayment) && $isRemainingPayment)

Thank you for completing your remaining payment! Your full payment has been successfully processed and your order is now fully paid.

@else

Thank you for your order! We're excited to help you with your move. Your order has been confirmed and payment has been successfully processed.

@endif
Order Number: {{ $quote->order_number ?? $quote->quote_number }}
Order Date: {{ $quote->created_at->format('F d, Y') }}
@if($quote->order_number) Order Type: Order @else Quote Type: Quote @endif

Order Details

@if($paymentType === 'deposit') @php $jobType = $depositSettings['job_type'] ?? ($quote->job_type ?? ($quote->raw_data['job_type'] ?? 'local_job')); if ($jobType === 'interstate_job') { $depositPercentage = $depositSettings['interstate_job_deposit_percentage'] ?? 20; $depositLabel = "Deposit Paid ({$depositPercentage}%):"; } else { $depositAmount = $depositSettings['local_job_deposit_amount'] ?? 100; $depositLabel = "Deposit Paid (\${$depositAmount}):"; } @endphp @else @endif
Total Amount: ${{ number_format($quote->total_cost, 2) }}
{{ $depositLabel }} ${{ number_format($quote->deposit_amount ?? 0, 2) }}
Remaining Amount: ${{ number_format($quote->remaining_amount ?? 0, 2) }}
Full Payment: ${{ number_format($quote->deposit_amount ?? $quote->total_cost, 2) }}
Remaining Amount: $0.00
Payment Status: @if($paymentStatus === 'succeeded') ✓ Paid @else {{ ucfirst($paymentStatus) }} @endif
@if($paymentType === 'deposit' && !empty($quote->remaining_payment_url)) @endif
What's Next?
  • Our team will review your order and contact you shortly
  • We'll confirm the move date and time with you
  • @if($paymentType === 'deposit')
  • Please complete the remaining payment before the move date
  • @endif
  • If you have any questions, feel free to contact us
@if(!empty($settings['business_email']) || !empty($settings['business_phone']))
Need Help?

If you have any questions or need assistance, our support team is here to help:

@if(!empty($settings['business_email']))

Email: {{ $settings['business_email'] }}

@endif @if(!empty($settings['business_phone']))

Phone: {{ $settings['business_phone'] }}

@endif
@endif

Thank you for choosing {{ $settings['business_name'] ?? 'Speedy Move' }}. We look forward to serving you!

Best regards,
{{ $settings['business_name'] ?? 'Speedy Move' }} Team

@include('Admin.Emails.partials.email-footer')