{{ __('wpbox.our_subscription_plans') }}

{{ __('wpbox.simple_flexible_pricing') }}

{{ __('wpbox.subscription_plans_description') }}

@foreach ($plans as $keyp => $plan) @if ($keyp % 2 ==0)

{{ $plan->name }}

{{ $plan->description }}

    @foreach (explode(",",$plan['features']) as $feature)
  • {{ $feature }}

  • @endforeach

{{ __('wpbox.plan_title',['plan'=>$plan->name]) }}

{{ __('wpbox.plan_subscribe_info',['plan'=>$plan->name]) }}

{{ config('money')[strtoupper(config('settings.cashier_currency'))]['symbol'] }}

{{ $plan->price }}/ {{ $plan['period'] == 1? __('month') : __('year') }}

{{ __('wpbox.start_now')}}

{{ __('wpbox.no_contracts')}}

@else

{{ $plan->name }}

{{ $plan->description }}

    @foreach (explode(",",$plan['features']) as $feature)
  • {{ $feature }}

  • @endforeach

{{ __('wpbox.plan_title',['plan'=>$plan->name]) }}

{{ __('wpbox.plan_subscribe_info',['plan'=>$plan->name]) }}

{{ config('money')[strtoupper(config('settings.cashier_currency'))]['symbol'] }}

{{ $plan->price }}/ {{ $plan['period'] == 1? __('month') : __('year') }}

{{ __('wpbox.start_now')}}

{{ __('wpbox.no_contracts')}}

@endif @endforeach