Hello {{ $subscription->user->name ?? 'User' }},
Your subscription has been cancelled successfully.
We’re sorry to see you go. If you change your mind, you can always renew your subscription anytime.
Subscription Details:
Plan: {{ $subscription->package->name ?? 'N/A' }}
Amount: ${{ number_format($subscription->package->price, 2) }}
{{--Subscription ID: {{ $subscription->stripe_subscription_id }}
--}}Subscribed At: {{ $subscription->created_at->format('d M, Y H:i A') }}
Cancelled At: {{ $subscription->canceled_at ? $subscription->canceled_at->format('d M, Y H:i A') : 'N/A' }}
Status: Cancelled
Thanks,
The {{ config('app.name') }} Team