🌐 ISP Billing System

Hello {{ $customer->name }},
@if($notificationType === 'service_activated')
✓ Your service has been successfully activated!
Your internet service is now active and ready to use. Below are your service details:

Service Details

Plan: {{ $subscription->plan->name }}
Type: {{ ucfirst($subscription->type) }}
Speed: {{ $subscription->plan->download_speed }}/{{ $subscription->plan->upload_speed }}
Validity: {{ $subscription->plan->validity_days }} days
Expires: {{ $subscription->expires_at->format('M d, Y H:i') }}
@elseif($notificationType === 'service_refilled')
✓ Your service has been successfully refilled!
We have added more time to your service. Your service will now expire on the new date shown below.

Refill Details

Plan: {{ $subscription->plan->name }}
Days Added: {{ $additionalData['days_added'] ?? 0 }} days
Amount Paid: ${{ number_format($additionalData['amount'] ?? 0, 2) }}
New Expiry: {{ $subscription->expires_at->format('M d, Y H:i') }}
@elseif($notificationType === 'service_recharged')
✓ Your service has been successfully recharged!
Your service is now active again. Thank you for renewing your subscription!

Service Details

Plan: {{ $subscription->plan->name }}
Validity: {{ $subscription->plan->validity_days }} days
Expires: {{ $subscription->expires_at->format('M d, Y H:i') }}
@elseif($notificationType === 'service_cancelled')
⚠ Your service has been cancelled
Your internet service subscription has been cancelled. If you believe this is an error, please contact our support team immediately.

Cancelled Service

Plan: {{ $subscription->plan->name }}
Cancelled On: {{ now()->format('M d, Y H:i') }}
@elseif($notificationType === 'service_expiring')
⏰ Your service is expiring soon!
This is a reminder that your internet service will expire in {{ $additionalData['days_remaining'] ?? 0 }} days. Please renew your service to avoid interruption.

Service Details

Plan: {{ $subscription->plan->name }}
Days Remaining: {{ $additionalData['days_remaining'] ?? 0 }} days
Expires: {{ $subscription->expires_at->format('M d, Y H:i') }}
Renew Now @elseif($notificationType === 'service_expired')
❌ Your service has expired
Your internet service has expired. Please recharge your service to continue enjoying our services.

Expired Service

Plan: {{ $subscription->plan->name }}
Expired On: {{ $subscription->expires_at->format('M d, Y H:i') }}
Recharge Now @elseif($notificationType === 'payment_received')
✓ Payment received successfully!
We have received your payment. Thank you for your business!

Payment Details

Amount: ${{ number_format($additionalData['amount'] ?? 0, 2) }}
Payment Method: {{ ucfirst($additionalData['payment_method'] ?? 'N/A') }}
Description: {{ $additionalData['description'] ?? 'N/A' }}
Date: {{ now()->format('M d, Y H:i') }}
@elseif($notificationType === 'low_balance')
⚠ Low balance alert!
Your account balance is running low. Please top up your account to avoid service interruption.

Account Balance

Current Balance: ${{ number_format($customer->balance ?? 0, 2) }}
Top Up Now @elseif($notificationType === 'welcome')
🎉 Welcome to our service!
Thank you for choosing us as your internet service provider. We're excited to have you on board!
Your account has been successfully created. You can now browse our plans and activate your first service.
Browse Plans @endif
If you have any questions or need assistance, please don't hesitate to contact our support team.