@php use App\Models\Utility; $settings = \Modules\LandingPage\Entities\LandingPageSetting::settings(); $logo = Utility::get_file('uploads/landing_page_image'); $sup_logo = Utility::get_file('uploads/logo'); $metatitle = isset($adminSettings['meta_title']) ? $adminSettings['meta_title'] : ''; $metsdesc = isset($adminSettings['meta_desc']) ? $adminSettings['meta_desc'] : ''; $meta_image = \App\Models\Utility::get_file('uploads/meta/'); $meta_logo = isset($adminSettings['meta_image']) ? $adminSettings['meta_image'] : ''; $get_cookie = \App\Models\Utility::getCookieSetting(); $setting = \App\Models\Utility::colorset(); $SITE_RTL = $adminSettings['SITE_RTL'] ? $adminSettings['SITE_RTL'] : ''; $lang = \App::getLocale('lang'); if ($lang == 'ar' || $lang == 'he') { $SITE_RTL = 'on'; } $color = !empty($setting['color']) ? $setting['color'] : 'theme-3'; if(isset($setting['color_flag']) && $setting['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } @endphp {{ env('APP_NAME') }} @if ($SITE_RTL == 'on') @endif @if ($setting['cust_darklayout'] == 'on') @else @endif @if ($setting['cust_darklayout'] == 'on') @else @endif
@if ($settings['topbar_status'] == 'on')

{!! $settings['topbar_notification_msg'] !!}

@endif @if ($settings['menubar_status'] == 'on')
@endif
@if ($settings['home_status'] == 'on')
{{ $settings['home_offer_text'] }}

{{ $settings['home_heading'] }}

{{ $settings['home_description'] }}
@if(Storage::exists('/uploads/landing_page_image/'.$settings['home_banner']))
@endif

{{ __('Trusted by') }} {{ $settings['home_trusted_by'] }}

@foreach (explode(',', $settings['home_logo']) as $k => $home_logo )
@endforeach
@endif @if ($settings['feature_status'] == 'on')
{{ $settings['feature_title'] }}

{!! $settings['feature_heading'] !!}

{!! $settings['feature_description'] !!}

@if ($settings['feature_buy_now_link']) {{ __('Buy Now') }} @endif
@if (is_array(json_decode($settings['feature_of_features'], true)) || is_object(json_decode($settings['feature_of_features'], true))) @foreach (json_decode($settings['feature_of_features'], true) as $key => $value)

{!! strip_tags($value['feature_heading']) !!}

{!! strip_tags($value['feature_description']) !!}

@endforeach @endif
{{ $settings['feature_title'] }}

{!! $settings['highlight_feature_heading'] !!}

{!! $settings['highlight_feature_description'] !!}

@if(Storage::exists('/uploads/landing_page_image/'.$settings['highlight_feature_image']))
@endif
@endif @if ($settings['feature_status'] == 'on')
@if (is_array(json_decode($settings['other_features'], true)) || is_object(json_decode($settings['other_features'], true))) @foreach (json_decode($settings['other_features'], true) as $key => $value) @if ($key % 2 == 0)
{{ __('Features') }}

{!! $value['other_features_heading'] !!}

{!! strip_tags( $value['other_featured_description']) !!}

{{ __('Buy Now ') }}
@if(Storage::exists('/uploads/landing_page_image/'.$value['other_features_image']))
@endif
@else
{{ __('Features') }}

{!! $value['other_features_heading'] !!}

{!! strip_tags($value['other_featured_description']) !!}

{{ __('Buy Now ') }}
@endif @endforeach @endif
@endif @if ($settings['discover_status'] == 'on')
{{ __('DISCOVER') }}

{!! strip_tags($settings['discover_heading']) !!}

@if (is_array(json_decode($settings['discover_of_features'], true)) || is_object(json_decode($settings['discover_of_features'], true))) @foreach (json_decode($settings['discover_of_features'], true) as $key => $value)

{!! strip_tags($value['discover_heading']) !!}

{!! strip_tags($value['discover_description']) !!}

@endforeach @endif
@endif @if ($settings['screenshots_status'] == 'on')
{{ __('SCREENSHOTS') }}

{!! $settings['screenshots_heading'] !!}

{!! $settings['screenshots_description'] !!}

@if (is_array(json_decode($settings['screenshots'], true)) || is_object(json_decode($settings['screenshots'], true))) @foreach (json_decode($settings['screenshots'], true) as $value)
{!! $value['screenshots_heading'] !!}
@endforeach @endif
@endif @if ($settings['plan_status'] == 'on')
{{ __('PLAN') }}

{!! $settings['plan_heading'] !!}

{!! $settings['plan_description'] !!}

@php $collection = \App\Models\Plan::orderBy('price', 'ASC')->get(); $admin_payment_setting = Utility::getAdminPaymentSetting(); @endphp @foreach ($collection as $key => $value) @if($value->is_disable == 1)
{{ $value->name }} {{ isset($admin_payment_setting['currency_symbol']) ? $admin_payment_setting['currency_symbol'] : '?' }}{{ intval($value->price) }}/{{ $value->duration }}

{!! $value->description !!}

@endif @endforeach
@endif @if ($settings['faq_status'] == 'on')
{{ $settings['faq_title'] }}

{!! $settings['faq_heading'] !!}

{!! $settings['faq_description'] !!}

@if (is_array(json_decode($settings['faqs'], true)) || is_object(json_decode($settings['faqs'], true))) @foreach (json_decode($settings['faqs'], true) as $key => $value) @if ($key % 2 == 0)

{!! $value['faq_answer'] !!}
@endif @endforeach @endif
@if (is_array(json_decode($settings['faqs'], true)) || is_object(json_decode($settings['faqs'], true))) @foreach (json_decode($settings['faqs'], true) as $key => $value) @if ($key % 2 != 0)

{!! $value['faq_answer'] !!}
@endif @endforeach @endif
@endif @if ($settings['testimonials_status'] == 'on')
{{ __('TESTIMONIALS') }}

{!! $settings['testimonials_heading'] !!}

{!! $settings['testimonials_description'] !!}

@if (is_array(json_decode($settings['testimonials'])) || is_object(json_decode($settings['testimonials']))) @foreach (json_decode($settings['testimonials']) as $key => $value)
@for ($i = 1; $i <= (int) $value->testimonials_star; $i++) @endfor

{{ $value->testimonials_title }}

{{ $value->testimonials_description }}

{{ $value->testimonials_user }} {{ $value->testimonials_designation }}
@endforeach @endif

{!! $settings['testimonials_long_description'] !!}

@endif
@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif @if ($get_cookie['enable_cookie'] == 'on') @include('layouts.cookie_consent') @endif