@extends('user-front.layout') @section('tab-title') {{ $keywords['Home'] ?? 'Home' }} @endsection @php Config::set('app.timezone', $userBs->timezoneinfo->timezone); @endphp @section('meta-description', !empty($userSeo) ? $userSeo->home_meta_description : '') @section('meta-keywords', !empty($userSeo) ? $userSeo->home_meta_keywords : '') @section('content') @if (isset($home_sections->intro_section) && $home_sections->intro_section == 1)
@php $aboutBg = $home_text->about_image ?? 'about2.jpg'; @endphp
@if (!empty($home_text->about_video_url)) @endif
@if (!empty($home_text->about_title)) {{ $home_text->about_title }} @endif

{{ $home_text->about_subtitle ?? null }}

@if (!empty($home_text))

{!! nl2br($home_text->about_content) ?? '' !!}

@endif @if (!empty($home_text->about_button_url)) {{ $home_text->about_button_text }} @endif
@endif @if (in_array('Service', $packagePermissions) && isset($home_sections->featured_services_section) && $home_sections->featured_services_section == 1)
@if (!empty($home_text->service_title)) {{ $home_text->service_title }} @endif

{{ $home_text->service_subtitle ?? null }}

line-shape
line-shape
@endif @if (in_array('Portfolio', $packagePermissions) && isset($home_sections->portfolio_section) && $home_sections->portfolio_section == 1)
@if (!empty($home_text->portfolio_title)) {{ $home_text->portfolio_title }} @endif

{{ $home_text->portfolio_subtitle ?? null }}

@foreach ($portfolios as $portfolio) @endforeach
@endif @if (isset($home_sections->counter_info_section) && $home_sections->counter_info_section == 1)
@foreach ($counterInformations as $counterInformation)

{{ $counterInformation->count }}

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

@endforeach
@endif @if (isset($home_sections->work_process_section) && $home_sections->work_process_section == 1)
@if (!empty($home_text->work_process_section_title)) {{ $home_text->work_process_section_title }} @endif

{{ $home_text->work_process_section_subtitle ?? null }}

@if (!empty($home_text->work_process_section_text))

{!! nl2br($home_text->work_process_section_text) ?? '' !!}

@endif
@foreach ($work_processes as $key => $work_process)
{{ $key + 1 < 10 ? '0' . ($key + 1) : $key + 1 }}

{{ $work_process->title }}

@if (!empty($work_process->text))

{!! nl2br($work_process->text) !!}

@endif
@endforeach
@php $workbg = $home_text->work_process_section_img ?? 'work_process_bg.jpg'; $workVidBg = $home_text->work_process_section_video_img ?? 'work_process_video_bg.jpg'; @endphp
@if (!empty($home_text->work_process_section_video_url)) @endif
@endif @if (isset($home_sections->video_section) && $home_sections->video_section == 1) @php $videoBg = $videoSectionDetails->video_section_image ?? 'video_bg.jpg'; @endphp
@if (!empty($videoSectionDetails->video_section_url)) @endif

{{ $videoSectionDetails->video_section_title ?? null }}

Line
Line
@endif @if (isset($home_sections->testimonials_section) && $home_sections->testimonials_section == 1)
@if (!empty($home_text->testimonial_title)) {{ $home_text->testimonial_title }} @endif

{{ $home_text->testimonial_subtitle ?? null }}

@if (count($testimonials) > 0)
@foreach ($testimonials as $testimonial)
Image

{{ replaceBaseUrl($testimonial->content) }}

{{ $testimonial->name }}

{{ $testimonial->occupation ?? null }}
@endforeach
@endif
quote
@endif @if (in_array('Blog', $packagePermissions) && isset($home_sections->blogs_section) && $home_sections->blogs_section == 1)
@if (!empty($home_text->blog_title)) {{ $home_text->blog_title }} @endif

{{ $home_text->blog_subtitle ?? null }}

@foreach ($blogs as $blog)

{{ $blog->title }}

{{ $keywords['Learn_More'] ?? 'Learn More' }}
@endforeach
@endif @if (isset($home_sections->brand_section) && $home_sections->brand_section == 1)
@foreach ($brands as $brand) @endforeach
@endif @endsection