{{ __('Monthly reports') }}
@foreach($plans as $plan)
@if($plan->features->reports >= 0) {{ shortenNumber($plan->features->reports) }} @else {{ __('Unlimited') }} @endif
@if($plan->features->reports >= 0) {{ shortenNumber($plan->features->reports) }} @else {{ __('Unlimited') }} @endif
@endforeach
{{ __('Billing') }}
@foreach($plans as $plan)
@if($plan->hasPrice())
@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->hasPrice())
{{ 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(['Complete reports', 'Unlimited updates', 'White-labeled', 'Web tools', 'API access', 'Data export'] as $feature)
@include('icons.checkmark', ['class' => 'fill-current width-3 height-3'])
{{ __($feature) }}
@endforeach
@foreach($plans as $plan)
@auth @if($plan->hasPrice()) @if(Auth::user()->plan->id == $plan->id)
{{ __('Active') }}
@else @endif @else
{{ __('Free') }}
@endif @else @if(config('settings.registration')) @else @endif @endauth
@endforeach