@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('home_appliances', $locale)) @section('content')
    @foreach($slides as $slide)
  • {{ $slide->{'title_' . $locale} }}
    {{ $slide->{'subtitle_' . $locale} }}
    {{Translation::getValue('learn_more', $locale)}}
  • @endforeach
{{-- Section Title --}}

{{ $featureSection->{'title_' . $locale} }}

{{ $featureSection->{'description_' . $locale} }}
{{-- Feature Items --}}
@foreach($featureSection->items as $item)

{{ $item->{'title_' . $locale} }}

{{ $item->{'text_' . $locale} }}

@endforeach
{{-- Section title --}}

{{ $accordionSection->{'title_' . $locale} }}

{{-- Accordion Items --}}
    @foreach($accordionSection->items as $index => $item)
  • {{ $item->{'title_' . $locale} }}
    {{ $item->{'content_' . $locale} }}
  • @endforeach

{{ $portfolioSection->{'title_' . $locale} }}

{{ $portfolioSection->{'description_' . $locale} }}

{{ $featureSectionTwo->{'title_' . $locale} }}

{{ $featureSectionTwo->{'description_' . $locale} }}

{{ $featureSectionTwo->{'icon_1_title_' . $locale} }}

{{ $featureSectionTwo->{'icon_2_title_' . $locale} }}

{{ $featureSectionTwo->{'icon_3_title_' . $locale} }}

@php $processTitle = $processSection->{'title_'.$locale} ?? 'Our Simple Working Process'; $processDesc = $processSection->{'description_'.$locale} ?? 'We follow a clear and efficient process to deliver the best results.'; $processBtn = optional($processSection)->button_link ?? '#'; $steps = [ [ 'icon' => optional($processSection)->icon_1 ?? 'fa fa-search', 'title' => Translation::getValue('step_1_title_'.$locale) ?? 'Analysis', 'desc' => $processSection->{'step_1_desc_'.$locale} ?? 'We analyze your needs and requirements in detail.', ], [ 'icon' => optional($processSection)->icon_2 ?? 'fa fa-cogs', 'title' => Translation::getValue('step_2_title_'.$locale) ?? 'Planning', 'desc' => $processSection->{'step_2_desc_'.$locale} ?? 'We prepare a clear and effective implementation plan.', ], [ 'icon' => optional($processSection)->icon_3 ?? 'fa fa-check-circle', 'title' => Translation::getValue('step_3_title_'.$locale) ?? 'Execution', 'desc' => $processSection->{'step_3_desc_'.$locale} ?? 'We execute the plan and deliver reliable results.', ], ]; @endphp

{{ $processTitle }}

{{ $processDesc }}
@foreach($steps as $index => $step)
@if($index < 2) @endif

{{ $step['title'] }}

{{ $step['desc'] }}
@endforeach

{{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