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

Hi {{ $user->name }},

This is a friendly reminder that your subscription will renew soon.

Subscription Details:

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

Amount: {{ $subscription->plan->currency ?? 'USD' }} {{ number_format($subscription->amount, 2) }}

Renewal Date: {{ $subscription->renewal_at ? $subscription->renewal_at->format('M j, Y') : 'N/A' }}

Your payment method will be charged automatically on the renewal date. Make sure your payment information is up to date to avoid any service interruption.

Manage Subscription

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

@endsection