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

{{ $featureSectionThree->upperTitle($locale) }}

{!! nl2br(e($featureSectionThree->upperDescription($locale))) !!}

{{ $featureSectionThree->{'upper_icon_1_title_'.$locale} }}

{{ $featureSectionThree->{'upper_icon_1_desc_'.$locale} }}

{{ $featureSectionThree->{'upper_icon_2_title_'.$locale} }}

{{ $featureSectionThree->{'upper_icon_2_desc_'.$locale} }}

{{ $featureSectionThree->{'upper_icon_3_title_'.$locale} }}

{{ $featureSectionThree->{'upper_icon_3_desc_'.$locale} }}

{{ $featureSectionThree->lowerTitle($locale) }}

{{ $featureSectionThree->lowerDescription($locale) }}

{{ Translation::getValue('included_free', $locale) }}

@foreach($serviceItems as $item)
{{ $item->overlay($locale) }}

{{ $item->title($locale) }}

{{ $item->description($locale) }}
@endforeach

{{ $featureSectionFour->upperTitle($locale) }}

{!! nl2br(e($featureSectionFour->upperDescription($locale))) !!}

{{ $featureSectionFour->lowerTitle($locale) }}

{{ $featureSectionFour->lowerDescription($locale) }}

{{ $productSection->title($locale) }}

{{ $productSection->description($locale) }}

{{ $productSection->productTitle(1, $locale) }}

{{ $productSection->productDesc(1, $locale) }}

{{ $productSection->productTitle(2, $locale) }}

{{ $productSection->productDesc(2, $locale) }}

{{ $productSection->productTitle(3, $locale) }}

{{ $productSection->productDesc(3, $locale) }}

{{ $productSection->productTitle(4, $locale) }}

{{ $productSection->productDesc(4, $locale) }}

{{ $callToAction->title($locale) }}

{!! nl2br(e($callToAction->description($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