@extends('layouts.modern') {{-- Custom JS --}} @section('custom-css') {{-- AdSense status --}} @if ($setting->adsense_code != 'DISABLE') @if ($setting->adsense_code != '') {{-- AdSense code --}} @endif @endif @endsection @php // Settings use App\Models\Config; use App\Models\Page; $config = Config::get(); $page = Page::where('theme_id', '330599619570398')->where('slug', 'pricing')->where('status', 1)->get(); @endphp @section('content') {{-- Topbar --}} @include('website.modern.includes.topbar') {{-- Start home page sections --}}
@if (!empty($page[0]->body)) @foreach (preg_split('/(<[^>]*>)/', $page[0]->body, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY) as $part) @if (strpos($part, '<') === 0) {!! __($part) !!} @else {{ __($part) }} @endif @endforeach @endif
{{-- Plans --}} @foreach ($plans as $plan)

{{ __($plan->name) }}

{{ __($plan->description) }}

@if ($plan->price == 0) {{ __('Free') }} @endif {{ $plan->price == 0 ? '' : $currency->symbol }}{{ $plan->price == 0 ? '' : $plan->price }} / @if ($plan->price != 0 && $plan->validity == 9999) {{ __('Forever') }} @endif @if ($plan->validity == 31) {{ __('Per Month') }} @endif @if ($plan->validity == 366) {{ __('Per Year') }} @endif @if ($plan->validity > 1 && $plan->validity != 31 && $plan->validity != 366 && $plan->validity != 9999) {{ 'Per'.' '.$plan->validity.' '.__('Days') }} @endif

{{ __('What\'s includes')}}

    {{-- Templates --}}
  • {{ $plan->template_counts }} {{ __('Templates') }}

  • {{-- AI Words --}}
  • {{ $plan->max_words == 9999 ? __('Unlimited') : $plan->max_words }} {{ __('AI Words') }}

  • {{-- AI Images --}}
  • {{ $plan->max_images == 9999 ? __('Unlimited') : $plan->max_images }} {{ __('AI Images') }}

  • {{-- AI Speech to Text --}}
  • {{ __('AI Speech to Text') }}

  • {{-- AI Text to Speech --}}
  • {{ __('AI Text to Speech') }}

  • {{-- AI Code --}}
  • {{ __('AI Code') }}

  • {{-- AI Chat Assistant --}}
  • {{ __('AI Chat Assistant') }}

  • {{-- AI File Analyzer --}}
  • {{ __('AI File Analyzer') }}

  • {{-- AI Web Chat --}}
  • {{ __('AI Web Chat') }}

  • {{-- Multiple Languages --}}
  • {{ __('Multiple Languages') }}

  • {{-- Rich Editor --}}
  • {{ __('Rich Editor') }}

  • {{-- Additional Tools --}}
  • {{ __('Additional Tools') }}

  • {{-- Support --}}
  • {{ __('Support (Email)') }}

{{ __('Start now') }}
@endforeach
{{-- Start call action section --}} @include('website.modern.includes.call-action') {{-- End call action section --}} {{-- Footer --}} @include('website.modern.includes.footer') @endsection