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,17 @@
@php
/** @var \App\Models\Member $member */
@endphp
{{ __('Hello') }} {{ $member->full_name }},
@if ($member->membership_expires_at)
{{ __('This is a reminder that your membership with :app is scheduled to expire on :date.', ['app' => config('app.name'), 'date' => $member->membership_expires_at->toDateString()]) }}
@else
{{ __('This is a reminder to check your membership status with :app.', ['app' => config('app.name')]) }}
@endif
{{ __('If you have already renewed, you can ignore this email.') }}
{{ __('Thank you,') }}
{{ config('app.name') }}