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,14 @@
<x-mail::message>
# Payment Approved by Accountant
Your payment has been approved by our accountant and forwarded to the chair for final approval.
**Payment:** TWD {{ number_format($payment->amount, 0) }} on {{ $payment->paid_at->format('Y-m-d') }}
<x-mail::button :url="route('member.dashboard')">
View Status
</x-mail::button>
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>

View File

@@ -0,0 +1,14 @@
<x-mail::message>
# Payment Approved by Cashier
Your payment has been approved by our cashier and forwarded to the accountant for the next verification step.
**Payment:** TWD {{ number_format($payment->amount, 0) }} on {{ $payment->paid_at->format('Y-m-d') }}
<x-mail::button :url="route('member.dashboard')">
View Status
</x-mail::button>
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>

View File

@@ -0,0 +1,16 @@
<x-mail::message>
# Payment Fully Approved!
Great news! Your payment has been fully approved by our team.
**Payment:** TWD {{ number_format($payment->amount, 0) }} on {{ $payment->paid_at->format('Y-m-d') }}
Your membership will be activated shortly by our membership manager. You will receive another email once your membership is active.
<x-mail::button :url="route('member.dashboard')">
View Dashboard
</x-mail::button>
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>

View File

@@ -0,0 +1,20 @@
<x-mail::message>
# Payment Verification - Action Required
Your payment submission has been reviewed 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>

View File

@@ -0,0 +1,17 @@
<x-mail::message>
# New Payment for Verification
A new payment has been submitted and requires cashier verification.
**Member:** {{ $payment->member->full_name }}
**Amount:** TWD {{ number_format($payment->amount, 0) }}
**Payment Date:** {{ $payment->paid_at->format('Y-m-d') }}
**Method:** {{ $payment->payment_method_label }}
<x-mail::button :url="route('admin.payment-verifications.show', $payment)">
Review Payment
</x-mail::button>
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>

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>