@extends('emails.layout')
@section('body')
🎉 Subscription Activated!
Your {{ $subscription->plan_label }} Plan is now active.
Welcome to {{ $subscription->plan_label }}!
Thank you for subscribing to OlaInvoice {{ $subscription->plan_label }}.
Your payment has been confirmed and your account has been upgraded.
{{-- Subscription details --}}
Plan
{{ $subscription->plan_label }}
Amount Paid
₦{{ number_format($subscription->amount, 2) }}
Started
{{ $subscription->starts_at->format('d/m/Y') }}
Expires
{{ $subscription->expires_at->format('d/m/Y') }}
Reference
{{ $subscription->paystack_reference }}
{{-- What's unlocked --}}
What's now unlocked for you:
@if($subscription->plan === 'pro')
✅ Unlimited invoices every month
✅ Expense tracking with receipt upload
✅ Automated payment reminders
✅ Email notifications for all events
@else
✅ Everything in Pro
✅ Advanced revenue reports
✅ Top clients report
✅ VAT report for tax filing
✅ CSV export for invoices and expenses
@endif
Your subscription renews on {{ $subscription->expires_at->format('d/m/Y') }}.
To manage your subscription, visit Settings → Subscription in your dashboard.
@endsection