{{ translate($plan->name, 'plans') }}
@if ($plan->is_featured)
{{ translate('Popular') }}
@endif

{{ getSetting('currency_symbol') }}{{ $plan->price }}

/ {{ $plan->is_lifetime == 1 ? translate('Lifetime') : translate(ucfirst($plan->invoice_interval) . 'ly') }}

{{ translate($plan->description, 'plans') }}

@if ($user->subscriptions->count() == 0) {{ $plan->trial_period == 0 ? 'Get Started' : 'Start free trial' }} @else @if ($plan->id != $plan_id) {{ translate('Choose Plan') }} @else {{ translate('Renew') }} @endif @endif
{{ translate('Features') }}
@foreach ($plan->getFeaturesAttribute() as $feature)
@if ($feature->value == 'false' || $feature->value == 0) {{ translate($feature->name, 'plans') }} @else @if ($feature->value == 'true' || $feature->value == '-1') @if ($feature->tag != 'ads' && $feature->tag != 'premium_domains' && $feature->tag != 'attachments') {{ translate('Unlimited') }} @endif @elseif ($feature->tag != 'attachments' && $feature->tag != 'ads' && $feature->tag != 'premium_domains') {{ $feature->value }} @endif {{ translate($feature->name, 'plans') }} @endif
@endforeach