@if($kind === 'overdue')
Subscription Payment Overdue
@else
Subscription Payment Reminder
@endif
Hello {{ $hotelName }},
@if($kind === 'overdue')
Your subscription payment is overdue by {{ abs($daysRemaining) }} day(s).
@else
Your subscription will be due in {{ $daysRemaining }} day(s).
@endif
| Subscription Number |
{{ $subscription->subscription_number ?? ('#'.$subscription->id) }} |
| Plan |
{{ ucfirst((string) $subscription->plan_name) }} |
| Amount |
UGX {{ number_format((float) $subscription->plan_price, 0) }} |
| Due Date |
{{ $dueDate }} |
Please complete payment promptly to keep your services active.
|