@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('consumer_electronics', $locale)) @section('content')
    @foreach ($sliders as $slider)
  • {{Translation::getValue('learn_more', $locale)}}
    {{$slider->getTitle($locale)}}
    {!! nl2br(e($slider->getDescription($locale))) !!}
  • @endforeach

{{$productFeatureSection->getTitle($locale)}}

{{$productFeatureSection->getIconTitle(1, $locale)}}

{{$productFeatureSection->getIconDescription(1, $locale)}}

{{$productFeatureSection->getIconTitle(2, $locale)}}

{{$productFeatureSection->getIconDescription(2, $locale)}}

{{$productFeatureSection->getIconTitle(3, $locale)}}

{{$productFeatureSection->getIconDescription(3, $locale)}}
{{$productFeatureSection->getTitle($locale)}}

{{$productSupportSection->getTitle($locale)}}

{{$productSupportSection->getDescription($locale)}}
{{$productSupportSection->getTitle($locale)}}

{{$qualityConsumerEquipmentSection->getTitle($locale)}}

{{$qualityConsumerEquipmentSection->getDescription($locale)}}
{{$qualityConsumerEquipmentSection->getTitle($locale)}}

{{$easySetupSection->getTitle($locale)}}

{{$easySetupSection->getDescription($locale)}}
{{$easySetupSection->getTitle($locale)}}

{{$localRecordingSection->getTitle($locale)}}

{{$localRecordingSection->getDescription($locale)}}
{{$localRecordingSection->getTitle($locale)}}

{{$nightVisionSection->getTitle($locale)}}

{{$nightVisionSection->getDescription($locale)}}
{{$nightVisionSection->getTitle($locale)}}

{{$callToActionTwoSection->getTitle($locale)}}

{{$callToActionTwoSection->getSubTitle($locale)}}

{{$aboutSectionTwo->getTitle($locale)}}

{{$aboutSectionTwo->getDescription($locale)}}
%

{{$aboutSectionTwo->getGraphTitle(1, $locale)}}

%

{{$aboutSectionTwo->getGraphTitle(2, $locale)}}

%

{{$aboutSectionTwo->getGraphTitle(3, $locale)}}

%

{{$aboutSectionTwo->getGraphTitle(4, $locale)}}

{{Translation::getValue('subscribe_title_' . $locale)}}

{{Translation::getValue('subscribe_description_' . $locale)}}
@csrf
{{-- MESSAGES --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ Translation::getValue('subscribe_success_' . $locale) }}
@endif
@endsection