@extends('emails.layout') @section('title', 'Subscription Expired') @section('content')

Hi {{ $user->name }},

Your subscription has expired.

Subscription Details:

Plan: {{ $subscription->plan->name ?? 'N/A' }}

Expired On: {{ $subscription->ends_at ? $subscription->ends_at->format('M j, Y') : now()->format('M j, Y') }}

Your account has been downgraded to the free plan. To continue enjoying premium features and build credits, please renew your subscription.

Renew Subscription

Best regards,
The {{ $appName ?? config('app.name') }} Team

@endsection