23 lines
694 B
PHP
23 lines
694 B
PHP
<x-mail::message>
|
|
# Payment Submitted Successfully
|
|
|
|
Thank you, {{ $payment->member->full_name }}!
|
|
|
|
Your payment has been received and is currently under review by our team.
|
|
|
|
**Payment Details:**
|
|
- **Amount:** TWD {{ number_format($payment->amount, 0) }}
|
|
- **Payment Date:** {{ $payment->paid_at->format('Y-m-d') }}
|
|
- **Payment Method:** {{ $payment->payment_method_label }}
|
|
- **Reference:** {{ $payment->reference ?? 'N/A' }}
|
|
|
|
Your payment will be reviewed by our cashier, accountant, and chair. You will receive email notifications at each stage.
|
|
|
|
<x-mail::button :url="route('member.dashboard')">
|
|
View Payment Status
|
|
</x-mail::button>
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|