@extends('front.layout') @section('pagename') - {{__('Home')}} @endsection @section('meta-description', !empty($seo) ? $seo->home_meta_description : '') @section('meta-keywords', !empty($seo) ? $seo->home_meta_keywords : '') @section('content')
{{$be->hero_section_title}}

{{$be->hero_section_text}}

@if ($bs->intro_section == 1)
{{$bs->intro_title}}

{{$bs->intro_subtitle}}

@if (!empty($bs->intro_text))

{!! nl2br($bs->intro_text) !!}

@endif
@endif @if ($bs->feature_section == 1)
@if (!empty($bs->feature_title)) {{$bs->feature_title}} @endif
@foreach($features as $feature)

{{$feature->title}}

{{ $feature->text }}

@endforeach
@endif @if ($bs->process_section == 1)
@if (!empty($bs->work_process_title)) {{$bs->work_process_title}} @endif @if (!empty($bs->work_process_subtitle))

{{$bs->work_process_subtitle}}

@endif
@foreach($processes as $key => $process) @endforeach
@endif @if ($bs->templates_section == 1)
{{$bs->preview_templates_title}}

{{$bs->preview_templates_subtitle}}

@foreach ($templates as $template) @endforeach
@endif @if ($bs->featured_users_section == 1) @endif @if ($bs->pricing_section == 1)
@if (!empty($bs->pricing_title)) {{$bs->pricing_title}} @endif @if (!empty($bs->pricing_subtitle))

{{$bs->pricing_subtitle}}

@endif
@if (count($terms) > 1)
@endif
@foreach ($terms as $term)
@php $packages = \App\Models\Package::where('status', '1')->where('featured', '1')->where('term', strtolower($term))->get(); @endphp @foreach($packages as $package) @php $pFeatures = json_decode($package->features); @endphp

{{$package->title}}

{{$package->price != 0 && $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}}{{$package->price == 0 ? "Free" : $package->price}}{{$package->price != 0 && $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}/ {{__("$package->term")}}

    @foreach ($allPfeatures as $feature)
  • {{__("$feature")}} @if ($feature == 'Plugins') ({{__('Google Analytics, Disqus, WhatsApp, Facebook Pixel, Tawk.to')}}) @endif
  • @endforeach
@if($package->is_trial === "1" && $package->price != 0) {{__('Trial')}} @endif @if ($package->price == 0) {{__('Signup')}} @else {{__('Purchase')}} @endif
@endforeach
@endforeach
@endif @if ($bs->testimonial_section == 1)
@if (!empty($bs->testimonial_title)) {{$bs->testimonial_title}} @endif @if (!empty($bs->testimonial_subtitle))

{{$bs->testimonial_subtitle}}

@endif
@foreach($testimonials as $testimonial)

{{$testimonial->comment}}

{{$testimonial->name}}
{{$testimonial->rank}}
@endforeach
@endif @if ($bs->news_section == 1)
@if (!empty($bs->blog_title)) {{$bs->blog_title}} @endif @if (!empty($bs->blog_subtitle))

{{$bs->blog_subtitle}}

@endif
@endif @if ($bs->partners_section == 1)
@endif @endsection