@extends('front.layout') @section('content') @if ($bs->home_version == 'static') @include('front.multipurpose.hero.static') @elseif ($bs->home_version == 'slider') @include('front.multipurpose.hero.slider') @elseif ($bs->home_version == 'video') @include('front.multipurpose.hero.video') @elseif ($bs->home_version == 'water') @include('front.multipurpose.hero.water') @elseif ($bs->home_version == 'particles') @include('front.multipurpose.hero.particles') @elseif ($bs->home_version == 'parallax') @include('front.multipurpose.hero.parallax') @endif
@if ($bs->home_version == 'slider') @if (!empty($be->slider_bottom_img))
fress
@endif @else @if (!empty($be->hero_bottom_img))
fress
@endif @endif
@if ($bs->feature_section == 1)
@foreach ($features as $feature)
@if (!empty($feature->image)) feature @endif {{ convertUtf8($feature->title) }}
@endforeach
@endif
@if ($bs->home_version == 'slider') @if (!empty($be->slider_shape_img)) shape @endif @else @if (!empty($be->hero_shape_img)) shape @endif @endif
@if ($bs->intro_section == 1)
@if ($bs->intro_section_title)
{{ convertUtf8($bs->intro_section_title) }}
@endif

{{ convertUtf8($bs->intro_title) }}

{{ convertUtf8($bs->intro_text) }}

@if (!empty($bs->intro_signature)) autograph @endif
@if ($bs->intro_contact_text && $bs->intro_contact_number)
{{ convertUtf8($bs->intro_contact_text) }}

{{ convertUtf8($bs->intro_contact_number) }}

@endif @if ($bs->intro_video_image && $bs->intro_video_link)
@php $videobg = str_replace('core', '', base_path()) . '/public/assets/front/img/' . $bs->intro_video_image; @endphp @if (file_exists($videobg)) experience @endif
@endif
@if ($bs->intro_main_image)
experience
@endif
@endif @if ($bs->menu_section == 1) @if ($be->menu_version == 1)
{{ convertUtf8($be->menu_section_title) }}

{{ convertUtf8($be->menu_section_subtitle) }}

@foreach ($categories as $key => $category)
@foreach ($category->subcategories()->where('is_feature', 1)->get() as $subcat) @endforeach
{{-- Loader --}}
{{-- Loader --}} @if ($category->products()->where('is_feature', 1)->where('status', 1)->count() > 0) @foreach ($category->products()->where('is_feature', 1)->where('status', 1)->get() as $product)
@if ($product->is_special == 1)
{{ __('Special') }}
@endif
@endforeach @else

{{ __('Product Not Found') }}

@endif
@endforeach
@else @if (!empty($be->menu_section_img)) @endif
{{ convertUtf8($be->menu_section_title) }}

{{ convertUtf8($be->menu_section_subtitle) }}

@foreach ($categories as $key => $category)
@foreach ($category->subcategories()->where('is_feature', 1)->get() as $subcat) @endforeach
@endforeach
@endif @endif @if ($bs->special_section == 1)
@foreach ($special_product as $sproduct)
shape

{{ $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : '' }}{{ convertUtf8($sproduct->current_price) }}{{ $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : '' }}

@if (!empty(convertUtf8($sproduct->previous_price))) {{ $be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : '' }}{{ convertUtf8($sproduct->previous_price) }}{{ $be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : '' }} @endif {{ convertUtf8($sproduct->title) }}

{{ convertUtf8(strlen($sproduct->summary)) > 70? convertUtf8(substr($sproduct->summary, 0, 70)) . '...': convertUtf8($sproduct->summary) }}

@endforeach
@endif @if ($bs->team_section == 1)
{{ convertUtf8($bs->team_section_title) }}

{{ convertUtf8($bs->team_section_subtitle) }}

@foreach ($members as $member)
@if ($member->image) team @endif

{{ convertUtf8($member->name) }}

{{ convertUtf8($member->rank) }}
@endforeach
@endif @if ($bs->testimonial_section == 1)

{{ convertUtf8($bs->testimonial_title) }}

@foreach ($testimonials as $testimonial)

{{ convertUtf8($testimonial->comment) }}

@if ($testimonial->image) clients @endif {{ convertUtf8($testimonial->name) }}

{{ convertUtf8($testimonial->rank) }}

    @php $i = 0; for ($i == 1; $i < $testimonial->rating; $i++) { echo '
  • '; } @endphp
({{ $testimonial->rating }} {{ __('Stars') }})
@endforeach
@endif @if ($bs->news_section == 1)
{{ convertUtf8($bs->blog_section_title) }}

{{ convertUtf8($bs->blog_section_subtitle) }}

@foreach ($blogs as $blog)

{{ convertUtf8($blog->title) }}

{{ convertUtf8(strlen(strip_tags($blog->content)) > 100)? convertUtf8(substr(strip_tags($blog->content), 0, 100)) . '...': convertUtf8(strip_tags($blog->content)) }}

{{ __('Read More') }}
  • {{ \Carbon\Carbon::parse($blog->created_at)->diffForHumans() }} | {{ __('Admin') }}
@endforeach
@endif @if ($bs->is_quote == 1) @if ($bs->table_section == 1)
@endif @endif {{-- Variation Modal Starts --}} {{-- @include('front.partials.variation-modal') --}} {{-- Variation Modal Ends --}} @endsection