@extends('layouts.guest') @section('css') @endsection @section('content')
{{ __('Choose') }} {{ __('Your Plan') }}

{{ __('Flexible subscriptions with optional top up features') }}

@if ($monthly || $yearly || $prepaid)
@if ($prepaid) @if (config('payment.payment_option') == 'prepaid' || config('payment.payment_option') == 'both')
@if ($prepaids->count())
{{ __('Top up your subscription with more credits or start with Prepaid Plans credits only') }}
@foreach ( $prepaids as $prepaid )
{{ $prepaid->plan_name }} {{ $prepaid->currency }}{{ number_format((float)$prepaid->cost, 2) }}{!! config('payment.default_system_currency_symbol') !!}

{{ __('Total Characters') }} @if ($prepaid->bonus > 0) +{{ number_format($prepaid->bonus) }} {{ __('bonus') }}!@endif

@endforeach
@else
{{ __('No Pre-Paid plans were set yet') }}
@endif
@endif @endif @if ($monthly) @if (config('payment.payment_option') == 'subscription' || config('payment.payment_option') == 'both')
@if ($monthly_subscriptions->count())
{{ __('Subscribe to our Monthly Subscription Plans and enjoy ton of benefits') }}
@foreach ( $monthly_subscriptions as $subscription )
@if ($subscription->featured) {{ __('Most Popular') }} @endif
{{ $subscription->plan_name }}

{{ $subscription->primary_heading }}

{!! config('payment.default_system_currency_symbol') !!}{{ number_format((float)$subscription->cost, 2) }}

{{ $subscription->currency }} / {{ __('Month') }}

{{ $subscription->secondary_heading }}

    @foreach ( (explode(',', $subscription->plan_features)) as $feature ) @if ($feature)
  • {{ $feature }}
  • @endif @endforeach
@endforeach
@else
{{ __('No Subscriptions plans were set yet') }}
@endif
@endif @endif @if ($yearly) @if (config('payment.payment_option') == 'subscription' || config('payment.payment_option') == 'both')
@if ($yearly_subscriptions->count())
{{ __('Subscribe to our Yearly Subscription Plans and enjoy ton of benefits') }}
@foreach ( $yearly_subscriptions as $subscription )
@if ($subscription->featured) {{ __('Most Popular') }} @endif
{{ $subscription->plan_name }}

{{ $subscription->primary_heading }}

{!! config('payment.default_system_currency_symbol') !!}{{ number_format((float)$subscription->cost, 2) }}

{{ $subscription->currency }} / {{ __('Year') }}

{{ $subscription->secondary_heading }}

    @foreach ( (explode(',', $subscription->plan_features)) as $feature ) @if ($feature)
  • {{ $feature }}
  • @endif @endforeach
@endforeach
@else
{{ __('No Subscriptions plans were set yet') }}
@endif
@endif @endif
@else
{{ __('No Subscriptions or Pre-Paid plans were set yet') }}
@endif
@endsection @section('js') @endsection