{{-- Close button --}}
{{-- Icon with urgency-based color --}} @php $urgency = $data['urgency'] ?? 'low'; $iconBg = match($urgency) { 'high' => 'from-red-100 to-orange-100', 'medium' => 'from-orange-100 to-amber-100', default => 'from-yellow-100 to-amber-100', }; $iconColor = match($urgency) { 'high' => 'text-red-500', 'medium' => 'text-orange-500', default => 'text-yellow-500', }; @endphp
{{-- Content --}}

@if(($data['days_left'] ?? 0) <= 1) Your Plan Expires Tomorrow! @else Your Plan Expires in {{ $data['days_left'] }} Days @endif

Your {{ $data['plan_name'] ?? 'subscription' }} will expire on {{ $data['expires_at'] ?? 'soon' }}. Renew now to ensure uninterrupted access.

{{-- Info box --}}

Note: If your payment method is valid, your plan will renew automatically. Check your billing settings to ensure your payment is up to date.

{{-- Actions --}}
Review My Plan