@if ($plan->is_featured == 1)
{{ __($plan->name) }}
{!! displayCurrPlan(currency()->symbol, $plan->price - $taxValue, $newDiscountedPrice - $taxValue) !!}
/
{{ __('One time') }}
-
{{ __('Tax') }} ({{ $taxRate }}%)
{!! displayCurr(currency()->symbol, $taxValue) !!}
-
{{ __('Total') }}
{!! displayCurr(currency()->symbol, $plan->price, 0, $newDiscountedPrice) !!}
-
{{ __('Access') }} {{ __($plan->plan_type) }}
{{ __('Templates') }}
@foreach (explode(',', $plan->features) as $item)
-
{{ $item }}
@endforeach
@if ($plan->display_word_count)
-
@if ((int) $plan->total_words >= 0)
{{ number_format($plan->total_words) }}
{{ __('Word Tokens') }}
@else
{{ __('Unlimited') }} {{ __('Word Tokens') }}
@endif
@endif
@if ($plan->display_imag_count)
-
@if ((int) $plan->total_images >= 0)
{{ number_format($plan->total_images) }}
{{ __('Image Tokens') }}
@else
{{ __('Unlimited') }} {{ __('Image Tokens') }}
@endif
@endif