{{ __('Monthly pageviews') }}
@foreach($plans as $plan)
@if($plan->option_pageviews >= 0) {{ shortenNumber($plan->option_pageviews) }} @else {{ __('Unlimited') }} @endif
@if($plan->option_pageviews >= 0) {{ shortenNumber($plan->option_pageviews) }} @else {{ __('Unlimited') }} @endif
@endforeach
{{ __('Billing') }}
@foreach($plans as $plan)
@if($plan->plan_month && $plan->plan_year)
@if(($plan->amount_month*12) > $plan->amount_year)
{{ __(':value% off', ['value' => number_format(((($plan->amount_month*12) - $plan->amount_year)/($plan->amount_month*12) * 100), 0)]) }}
@endif
@endif
@endforeach
{{ __('Price') }}
@foreach($plans as $plan)
@if($plan->plan_month && $plan->plan_year)
{{ formatMoney($plan->amount_month, $plan->currency) }} {{ $plan->currency }}
{{ formatMoney($plan->amount_year, $plan->currency) }} {{ $plan->currency }}
@else
{{ __('Free') }}
{{ __('Free') }}
@endif
@endforeach
{{ __('What\'s included') }}
@foreach(['Unlimited websites', 'Unlimited events', 'API access', 'Email reports', 'Data ownership', 'Data export'] as $feature)
@include('icons.checkmark', ['class' => 'fill-current width-3 height-3'])
{{ __($feature) }}
@endforeach
@foreach($plans as $plan)
@auth @if($plan->plan_month && $plan->plan_year) @if($user->subscribed($plan->name))
{{ __('Active') }}
@else @endif @else
{{ __('Free') }}
@endif @else @if(config('settings.registration_registration')) @else @endif @endauth
@endforeach