@extends('layouts.modern-orange') {{-- 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', '317109101703740')->where('slug', 'home')->where('status', 1)->get(); $featureSection = Page::where('theme_id', '317109101703740')->where('slug', 'features')->where('status', 1)->get(); $pricing = Page::where('theme_id', '317109101703740')->where('slug', 'pricing-home')->where('status', 1)->get(); @endphp @section('content') {{-- Start Header --}} @include('website.modern-orange.includes.topbar') {{-- End Header --}} {{-- Start Feature Section --}} @if (!empty($featureSection[0]->body)) @foreach (preg_split('/(<[^>]*>)/', $featureSection[0]->body, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY) as $part) @if (strpos($part, '<') === 0) {!! __($part) !!} @else {{ __($part) }} @endif @endforeach @endif {{-- End Feature Section --}} {{-- Start Tools Section --}}

{{ __('Dynamic') }} {{ __('Content Creation') }}

{{ __("Leverage OpenAI's dynamic content creation. Our advanced algorithms generate diverse, compelling content, ensuring your messaging stays fresh and engaging.") }}

{{-- Tools --}} @foreach ($tools as $tool) @endforeach
{{-- End Tools Section --}} {{-- Start Images Section --}}

{{ __('Visual') }} {{ __('Creativity Unleashed') }}

{{ __('Our image generator employs advanced algorithms, pushing the boundaries of digital imagery.' )}}

{{-- Images --}} @if (count($images) > 0) @foreach ($images as $image) @endforeach @else {{-- Sample images --}} @for ($i = 1; $i <= 4; $i++) @endfor @endif
{{-- End Images Section --}} {{-- Start Our Plans Section --}}
{{ __('OUR PLANS') }}

{{ __('Choose the') }} {{ __('perfect plan') }} {{ __('for your needs') }}

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

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

{{-- Price --}} @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 {{ __('Start now')}}
  • {{ $plan->template_counts }} {{ __('Templates') }}
  • {{ $plan->max_words == 9999 ? __('Unlimited') : $plan->max_words }} {{ __('AI Words') }}
  • {{ $plan->max_images == 9999 ? __('Unlimited') : $plan->max_images }} {{ __('AI Images') }}
  • {{ __('AI Speech to Text') }}
  • {{ __('AI Text to Speech') }}
  • {{ __('AI Code') }}
  • {{ __('AI Chat Assistant') }}
  • {{ __('AI File Analyzer') }}
  • {{ __('AI Web Chat') }}
  • {{ __('Multiple Languages') }}
  • {{ __('Rich Editor') }}
  • {{ __('Additional Tools') }}
  • {{ __('Support (Email)') }}
@endforeach
{{-- End Our plans Section --}} {{-- Start Newsletter --}} @include('website.modern-orange.includes.call-action') {{-- End newsletter --}} {{-- Start Footer --}} @include('website.modern-orange.includes.footer') {{-- End Footerr --}} @endsection