{{-- banner section --}}
{{-- choose section --}}
@php
$choose = $webSettings->firstWhere('key', 'choose_section')->decoded_value ?? null;
$items = $choose->list_item ?? [];
@endphp
{{-- app section --}}
@php
$app = $webSettings->firstWhere('key', 'app_section')->decoded_value ?? null;
$appSectionStoreCounter = 0;
@endphp
{{-- feature section --}}
@php
$feature = $webSettings->firstWhere('key', 'feature_section')->decoded_value ?? null;
@endphp
{{-- Discover section --}}
@php
$discover = $webSettings->firstWhere('key', 'discover_section')->decoded_value ?? null;
@endphp
{{-- Who we are section --}}
@php
$whoWeAre = $webSettings->firstWhere('key', 'who_we_are')->decoded_value ?? null;
@endphp
@foreach ($whoWeAre as $who)
@endforeach
{{-- Register section --}}
@php
$register = $webSettings->firstWhere('key', 'register_section')->decoded_value ?? null;
$registerNameCounter = 0;
@endphp
{{-- for testimonial section --}}
@php
$testimonial =
$webSettings->firstWhere('key', 'testimonial_section')->decoded_value ?? null;
@endphp
{{-- for accordian section --}}
@php
$accordian = $webSettings->firstWhere('key', 'accordian_section')->decoded_value ?? null;
@endphp
{{-- for footer section --}}
@php
$footer = $webSettings->firstWhere('key', 'footer')->decoded_value ?? null;
@endphp