@if ($plan->is_featured == 1)
@if (currencyShouldDisplayOnRight(currency()->symbol))
@if ($plan->price !== ($newDiscountedPrice ?? $plan->price))
{{ $plan->price }}{{ currency()->symbol }}
{{ $newDiscountedPrice }}{{ currency()->symbol }}
@else
{{ $plan->price }}
{{ currency()->symbol }}
@endif
@else
@if ($plan->price !== ($newDiscountedPrice ?? $plan->price))
{{ currency()->symbol }}{{ $plan->price }}
{{ currency()->symbol }}{{ $newDiscountedPrice }}
@else
{{ currency()->symbol }}{{ $plan->price }}
@endif
@endif
/
{{ __(formatCamelCase($plan->frequency)) }}
{{ __($plan->name) }}
-
{{ __('Access') }} {{ __($plan->plan_type) }}
{{ __('Templates') }}
@foreach (explode(',', $plan->features) as $item)
-
{{ $item }}
@endforeach
@if ($plan->display_word_count)
-
@if ((int) $plan->total_words >= 0)
@formatNumber($plan->total_words)
{{ __('Word Tokens') }}
@else
{{ __('Unlimited') }} {{ __('Word Tokens') }}
@endif
@endif
@if ($plan->display_imag_count)
-
@if ((int) $plan->total_images >= 0)
@formatNumber($plan->total_images)
{{ __('Image Tokens') }}
@else
{{ __('Unlimited') }} {{ __('Image Tokens') }}
@endif
@endif