@extends('layouts.classic') @section('content') {{-- Custom JS --}} @section('custom-css') {{-- AdSense status --}} @if ($setting->adsense_code != "DISABLE") @if ($setting->adsense_code != "") {{-- AdSense code --}} @endif @endif @endsection {{-- Topbar --}} @include('website.classic.includes.topbar') @php use App\Models\Page; $page = Page::where('slug', 'pricing')->where('status', 1)->get(); @endphp {{-- Pricing --}}
{{-- Heading --}} @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 {{-- Pricing --}}
{{-- all plans --}} @foreach ($plans as $plan)

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

@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

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

{{ __('Get Started') }}
    {{-- Templates --}}
  • {{ $plan->template_counts }} {{ __('Templates') }} {{-- Info --}}
  • {{-- 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 --}}
  • @if ($plan->ai_speech_to_text == 1) @else @endif {{ __('AI Speech to Text') }}
  • {{-- AI Text to Speech --}}
  • @if ($plan->ai_text_to_speech == 1) @else @endif {{ __('AI Text to Speech') }}
  • {{-- AI Code --}}
  • @if ($plan->ai_code == 1) @else @endif {{ __('AI Code') }}
  • {{-- AI Chat Assistant --}}
  • @if ($plan->ai_chatgenius == 1) @else @endif {{ __('AI Chat Assistant') }}
  • {{-- AI File Analyzer --}}
  • @if ($plan->ai_docsassist == 1) @else @endif {{ __('AI File Analyzer') }}
  • {{-- AI Web Chat --}}
  • @if ($plan->ai_webchat == 1) @else @endif {{ __('AI Web Chat') }}
  • {{-- Multiple AI Languages --}}
  • {{ __('Multiple Languages') }}
  • {{-- Rich Editor --}}
  • {{ __('Rich Editor') }}
  • {{-- Additional Tools --}}
  • @if ($plan->additional_tools == 1) @else @endif {{ __('Additional Tools') }}
  • {{-- Support --}}
  • @if ($plan->support == 1) @else @endif {{ __('Support (Email)') }}
@endforeach
{{-- Quick call --}} @if (!empty($page[1]->body)) @foreach (preg_split('/(<[^>]*>)/', $page[1]->body, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY) as $part) @if (strpos($part, '<') === 0) {!! __($part) !!} @else {{ __($part) }} @endif @endforeach @endif
{{-- Info Modal --}} {{-- Footer --}} @include('website.classic.includes.footer') {{-- Custom JS --}} @section('custom-js') @endsection @endsection