@props(['auth' => false]) @php $pricingContent = getContent('pricing.content', true); $plans = App\Models\Plan::active()->get(); $writingAssistant = App\Models\WritingAssistant::active()->count(); @endphp @if (!$auth)
@endif
{{ __($pricingContent?->data_values?->heading ?? '') }}

{{ __($pricingContent?->data_values?->subheading ?? '') }}

{{ __($pricingContent?->data_values?->short_details ?? '') }}

@foreach ($plans as $plan)
{{ __($plan->name) }}

@lang('Monthly')

@lang('Yearly')

{{ gs('cur_sym') }}{{ showAmount($plan->monthly_price, currencyFormat: false) }}
{{ gs('cur_sym') }}{{ showAmount($plan->yearly_price, currencyFormat: false) }}
@lang('What`s included')
  • {{ getAmount($plan->monthly_credit) }} @lang('AI credits for content generation')

    {{ getAmount($plan->yearly_credit) }} @lang('AI credits for content generation')

  • @if ($plan->monthly_expired_days < 0)

    @lang('Data available for lifetime')

    @else

    @lang('Data available for ') {{ $plan->monthly_expired_days }} @lang('days')

    @endif
  • @if ($plan->yearly_expired_days < 0)

    @lang('Data available for lifetime')

    @else

    @lang('Data available for ') {{ $plan->yearly_expired_days }} @lang('days')

    @endif
  • @lang('No daily limit')

  • {{ __('Free access :template writing assistant', ['template' => getAmount($writingAssistant)]) }}

@auth @else @endauth
@endforeach
@if(!$auth)
@endif @push('script') @endpush