@php if (!($subscription && is_object($subscription))) { return; } $translations = parse_translation($subscription); $title = $translations['title'] ?? ($subscription->title ?? ''); $description = $translations['description'] ?? ($subscription->description ?? ''); $backendSetting = get_theme_option(key: 'backend_general') ?? null; $currency = $backendSetting['currency'] ?? 'USD-$'; $currencySymbol = get_currency_symbol($currency); @endphp
{{ $currencySymbol }}{{ dotZeroRemove($subscription->price) }}
{{ $title }}

{!! clean($description) !!}

@if (!authCheck()) {{ translate('Select Our Plan') }} @else
@csrf
@endif
@if ($subscription->is_popular)
{{ translate('Popular') }}
@endif