{{ t('Plans') }}

{{ t('subscription_plans') }}

{{ t('manage_your_subscription_plans_and_pricing') }}

{{ t('show_active_only') }}
@if(checkPermission('admin.plans.create')) {{ t('create_plan') }} @endif
@forelse($plans as $plan)
@if ($plan->featured)
@if ($plan->featured)
{{ t('featured') }}
@endif
@endif
{{ $plan->name[0] }}

{{ $plan->name }}

@if ($plan->is_free) {{ t('free') }} @endif {{ $plan->is_active ? t('active') : t('inactive') }}
@if ($plan->is_free) {{ t('free') }} @else {{ get_base_currency()->format($plan->price) }} /{{ $plan->billing_period == 'monthly' ? t('monthly') : t('yearly') }} @endif
@if ($plan->trial_days > 0 && $plan->is_free == 1)
{{ 'trial ' . $plan->trial_days . ' days' }}
@endif

{{ $plan->description }}

{{ t('features') }}

    @foreach ($plan->planFeatures as $feature) @if (!empty($feature->value))
  • {{ $feature->name }}: {{ $feature->value == '-1' ? 'Unlimited' : number_format($feature->value) }}
  • @endif @endforeach
@if(checkPermission('admin.plans.edit')) @endif @if(checkPermission('admin.plans.edit')) @endif @if(checkPermission('admin.plans.delete')) @if (!$plan->is_free) @endif @endif
@empty

{{ t('no_plans_found') }}

{{ t('get_started_by_creating_a_new_plan') }}

@if(checkPermission('admin.plans.create')) {{ t('create_plan') }} @endif
@endforelse
@if ($plans->hasPages())
{{ $plans->links() }}
@endif
{{ t('cancel') }} {{ t('delete') }}