{{ t('downgrade_subscription') }}

{{ t('downgrade_subscription') }}

{{ t('select_new_plan_to_downgrade') }}

{{ t('back_to_subscription') }}

{{ t('current_plan') }}

{{ t('you_are_currently') }} {{ $subscription->plan->name }} {{ t('plan') }} {{ t('select_to_downgrade_plan') }}

@if (session('error'))

{{ session('error') }}

@endif @if (session('success'))

{{ session('success') }}

@endif @if ($plans->isEmpty())

{{ t('no_lower_tier_plans') }}

@else

{{ t('before_you_downgrade') }}

{{ t('immidiate_effect') }}

{{ t('changes_apply_after_confirmation') }}

{{ t('prorated_credit') }}

{{ t('receive_credit_for_unused_time') }}

{{ t('billing_reset') }}

{{ t('billing_cycle_starts_fresh') }}

{{ t('feature_access') }}

{{ t('some_features_maybe_unavailable') }}

@foreach ($plans as $plan)

{{ $plan->name }}

{{ ('available') }}
{{ get_base_currency()->symbol }} {{ number_format($plan->price, 2) }} /{{ ucfirst($plan->billing_period) }}

{{ $plan->description }}

{{ t('plan_features') }}

    @foreach ($plan->features ?? [] as $feature) @if ($feature->value != 0)
  • {{ $feature->name }}: {{ $feature->value == '-1' ? 'Unlimited' : number_format($feature->value) }}
  • @endif @endforeach
@csrf @php $pendingPlanChange = $subscription->getUnpaidChangePlanInvoice(); @endphp @if ($pendingPlanChange)
@endif
@endforeach
@endif