Files
usher-manage-stack/resources/views/emails/payments/submitted-member.blade.php
2025-11-20 23:21:05 +08:00

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>