21 lines
608 B
PHP
21 lines
608 B
PHP
<x-mail::message>
|
|
# Payment Verification - Action Required
|
|
|
|
Your payment submission has been reviewed and was rejected, and requires your attention.
|
|
|
|
**Payment:** TWD {{ number_format($payment->amount, 0) }} on {{ $payment->paid_at->format('Y-m-d') }}
|
|
|
|
**Reason for Rejection:**
|
|
{{ $payment->rejection_reason }}
|
|
|
|
**Next Steps:**
|
|
Please review the reason above and submit a new payment with the correct information. If you have questions, please contact us.
|
|
|
|
<x-mail::button :url="route('member.payments.create')">
|
|
Submit New Payment
|
|
</x-mail::button>
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|