@extends('emails.layout') @section('title', 'Subscription Cancelled') @section('content')
Hi {{ $user->name }},
Your subscription has been cancelled as requested.
Subscription Details:
Plan: {{ $subscription->plan->name ?? 'N/A' }}
@if($subscription->ends_at)Access Until: {{ $subscription->ends_at->format('M j, Y') }}
@endifYou will continue to have access to your current plan features until the end of your billing period. After that, your account will be downgraded to the free plan.
We're sorry to see you go! If you change your mind, you can reactivate your subscription at any time.
Best regards,
The {{ $appName ?? config('app.name') }} Team