@include('Admin.Emails.partials.email-styles')
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.
@elseThank 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| 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 |
To complete your order, please pay the remaining amount using the link below:
Pay Remaining Amount (${{ number_format($quote->remaining_amount ?? 0, 2) }})
Or copy and paste this link into your browser:
{{ $quote->remaining_payment_url }}
If you have any questions or need assistance, our support team is here to help:
@if(!empty($settings['business_email'])) @endif @if(!empty($settings['business_phone'])) @endifThank you for choosing {{ $settings['business_name'] ?? 'Speedy Move' }}. We look forward to serving you!
Best regards,
{{ $settings['business_name'] ?? 'Speedy Move' }} Team