@extends('tenant.layouts.app') @push('title') {{ __('Welcome') }} @endpush @section('content') @if($section['hero_banner'] != null && $section['hero_banner']->status==STATUS_ACTIVE)

{{__($section['hero_banner']->title)}}

{{__($section['hero_banner']->description)}}

@endif @if($section['features_area'] != null && $section['features_area']->status == STATUS_ACTIVE)

{{__($section['features_area']->title)}}

{{__($section['features_area']->description)}}

{{__(count($featureObj)>0?$featureObj[0]->title:null)}}

{{__(count($featureObj)>0?$featureObj[0]->description:null)}}

{{__(count($featureObj)>1?$featureObj[1]->title:null)}}

{{__(count($featureObj)>1?$featureObj[1]->description:null)}}

{{__(count($featureObj)>2?$featureObj[2]->title:null)}}

{{__(count($featureObj)>2?$featureObj[2]->description:null)}}

@endif @if ($section['knowledge_area'] != null && $section['knowledge_area']->status==STATUS_ACTIVE)

{{$section['knowledge_area']->title}}

{{$section['knowledge_area']->description}}

@foreach($knowledgeCategory as $key => $knowledgeCategorys)

{{ $knowledgeCategorys->title }}({{ $knowledgeCategorys->knowledge->count() }})

{{ substr($knowledgeCategorys->description, 0, 150) }}

    @foreach($knowledge as $knowledges) @if($knowledges->knowledge_category_id == $knowledgeCategorys->id)
  • {{ $knowledges->title }}
  • @endif @endforeach
{{ __('Explore More') }}
@endforeach

{{$section['looking_support_area']->title}}

{{$section['looking_support_area']->description}}

@endif @if($section['testimonial_area'] != null && $section['testimonial_area']->status==STATUS_ACTIVE)

{{__($section['testimonial_area']->title)}}

{{__($section['testimonial_area']->description)}}

@endif @if($section['faq_area'] != null && $section['faq_area']->status==STATUS_ACTIVE)

{{__($section['faq_area']->title)}}

{{__($section['faq_area']->description)}}

@endif @if($section['need_support_area'] != null && $section['need_support_area']->status==STATUS_ACTIVE)

{{__($section['need_support_area']->title)}}

{{__($section['need_support_area']->description)}}

@endif @endsection