Initial commit

This commit is contained in:
2025-11-20 23:21:05 +08:00
commit 13bc6db529
378 changed files with 54527 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<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>