@extends('emails.partials.base_template')
@section('title', 'Payment Receipt')
@section('subtitle', 'Your payment has been successfully processed')
@section('content')
Hello {{ $user->name ?? 'Valued Customer' }},
Thank you for your payment! We have successfully processed your transaction for {{ $companySettings['companyName'] }} services.
Payment Confirmed! Your payment has been processed successfully and your account has been updated.
Payment Amount
${{ number_format($amount, 2) }}
Transaction completed successfully
Payment Details
Payment ID:
#{{ $payment->id }}
Amount Paid:
${{ number_format($amount, 2) }}
Payment Date:
{{ now()->format('F j, Y g:i A') }}
Payment Method:
{{ ucfirst($payment->provider ?? 'Credit Card') }}
Status:
Completed
Customer Information
Name:
{{ $user->name ?? 'N/A' }}
Email:
{{ $user->email }}
@if($user->phone)
Phone:
{{ $user->phone }}
@endif
Receipt Information: Please keep this email as your payment receipt.
You can also access your payment history in your account dashboard.
What's Next?
Your payment has been processed and your account is now up to date.
If this payment was for a booking, you should receive a booking confirmation shortly.
Need Help?
If you have any questions about this payment or need assistance with your account,
please don't hesitate to contact our customer service team at {{ $companySettings['companyPhone'] }} or {{ $companySettings['companyEmail'] }}.
Thank you for choosing {{ $companySettings['companyName'] }} for your vehicle transportation needs!
@endsection