{{ $plan['description'] }}
@php // Translator-first interval label so non-English locales render // "/month" "/year" etc. instead of the raw slug stored in // config/plans.php. Falls through to the raw value for any // tenant-custom interval ("quarter", etc.) we haven't shipped a key for. $intervalSlug = $plan['interval'] ?? 'month'; $intervalKey = 'filament/subscription_required.interval_' . $intervalSlug; $intervalTrans = __($intervalKey); $intervalLabel = (is_string($intervalTrans) && $intervalTrans !== $intervalKey) ? $intervalTrans : $intervalSlug; @endphp