@extends('default.layout.app') @section('title', $setting->site_name) @section('content') @include('default.layout.header-clean') @include('default.landing-page.banner.section-clean') @if(isset($tools) && count($tools) > 0)

{{ __('Powerful Features') }}

{{ __('Explore the tools that will transform your workflow') }}

@foreach($tools as $tool)
{!! $tool->image !!}

{{ __($tool->title) }}

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

@endforeach
@endif @if(isset($howitWorks) && count($howitWorks) > 0)

{{ __('How It Works') }}

{{ __('Simple steps to get started') }}

@foreach($howitWorks as $work)
{{ $loop->iteration }}

{{ __($work->title) }}

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

@endforeach
@endif @if(isset($testimonials) && count($testimonials) > 0)

{{ __('What Our Users Say') }}

{{ __('Trusted by thousands of users worldwide') }}

@foreach($testimonials as $testimonial)
{{ $testimonial->name }}

{{ $testimonial->name }}

{{ $testimonial->title }}

@for($i = 0; $i < 5; $i++) @endfor

{{ $testimonial->content }}

@endforeach
@endif @if(isset($plansSubscriptionMonthly) && count($plansSubscriptionMonthly) > 0)

{{ __('Simple Pricing') }}

{{ __('Choose the plan that fits your needs') }}

@foreach($plansSubscriptionMonthly as $plan)

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

{{ $currency }}{{ $plan->price }} /{{ __('month') }}

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

  • {{ __($plan->features) }}
{{ __('Get Started') }}
@endforeach
@endif @include('default.layout.footer-clean') @livewireScriptConfig() @stack('script') @if ($app_is_demo ?? false) @endif @endsection