@include('Admin.Emails.partials.email-styles')
Dear {{ $user->name ?? 'Customer' }},
@if($action === 'approve') @if($paymentType === 'deposit')Great news! Your deposit payment has been reviewed and approved by our team.
@elseExcellent! Your remaining amount payment has been reviewed and approved by our team. Your order is now fully paid.
@endif @else @if($paymentType === 'deposit')We regret to inform you that your deposit payment has been reviewed and could not be approved at this time.
@elseWe regret to inform you that your remaining amount payment has been reviewed and could not be approved at this time.
@endif @endif @if($action === 'approve')@if($paymentType === 'deposit') Your deposit payment of ${{ number_format($quote->deposit_amount ?? 0, 2) }} has been successfully reviewed and approved by {{ $settings['business_name'] ?? 'Speedy Move' }}. Thank you for your payment! @else Your remaining amount payment of ${{ number_format($originalRemainingAmount ?? $quote->remaining_amount ?? 0, 2) }} has been successfully reviewed and approved by {{ $settings['business_name'] ?? 'Speedy Move' }}. Your order is now fully paid. Thank you! @endif
@if($paymentType === 'deposit') Your deposit payment of ${{ number_format($quote->deposit_amount ?? 0, 2) }} has been reviewed and rejected by {{ $settings['business_name'] ?? 'Speedy Move' }}. Please review the details below and contact us if you have any questions. @else Your remaining amount payment of ${{ number_format($originalRemainingAmount ?? $quote->remaining_amount ?? 0, 2) }} has been reviewed and rejected by {{ $settings['business_name'] ?? 'Speedy Move' }}. Please review the details below and contact us if you have any questions. @endif
| Order/Quote Number: | {{ $quote->order_number ?? $quote->quote_number ?? 'N/A' }} |
| Total Amount: | ${{ number_format($quote->total_cost, 2) }} |
| Deposit Amount: | @if($action === 'approve') ${{ number_format($quote->deposit_amount ?? 0, 2) }} @else ${{ number_format($quote->deposit_amount ?? 0, 2) }} @endif |
| Remaining Amount: | ${{ number_format($quote->remaining_amount ?? 0, 2) }} |
| Deposit Paid: | ${{ number_format($quote->deposit_amount ?? 0, 2) }} |
| Remaining Amount: | @if($action === 'approve') ${{ number_format($originalRemainingAmount ?? $quote->remaining_amount ?? 0, 2) }} (Approved) @else ${{ number_format($quote->remaining_amount ?? 0, 2) }} (Rejected) @endif |
| Payment Method: | Bank Transfer |
| Payment Status: | @if($action === 'approve') ✓ Approved @else ✗ Rejected @endif |
Your deposit has been approved. To complete your order, please pay the remaining amount of ${{ number_format($quote->remaining_amount, 2) }}.
@if(!empty($quote->remaining_payment_url))Pay Remaining Amount (${{ number_format($quote->remaining_amount, 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'])) @endif@if($action === 'approve') Thank you for choosing {{ $settings['business_name'] ?? 'Speedy Move' }}. We look forward to serving you! @else We apologize for any inconvenience. Please contact us so we can help you resolve this matter and proceed with your order. @endif
Best regards,
{{ $settings['business_name'] ?? 'Speedy Move' }} Team