@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('front-content') @include('frontend.templates.layouts.search_bar')
@php $currentLang = session()->get('front_lang'); $aboutUsContent = getContent('it_solutions_about_us.content', true); $serviceContent = getContent('main_demo_service_section.content', true); $contactContent = getContent('contact_form_section.content', true); $contactInfoContent = getContent('contact_info_section.content', true); $expertTeamContent = getContent('expert_feature_section.content', true); $ctaContent = getContent('main_demo_cta_section.content', true); $blogContent = getContent('main_demo_blog_section.content', true); @endphp
@foreach($sliders as $slider)
{{ $slider->translate?->title }}

{{ $slider->translate?->small_text }}

@endforeach

{{ getTranslatedValue($aboutUsContent, 'heading', $currentLang) }}

{{ getTranslatedValue($aboutUsContent, 'description', $currentLang) }}

  • {{ getTranslatedValue($aboutUsContent, 'feature_text_1', $currentLang) }}
  • {{ getTranslatedValue($aboutUsContent, 'feature_text_2', $currentLang) }}
  • {{ getTranslatedValue($aboutUsContent, 'feature_text_3', $currentLang) }}

{{ getTranslatedValue($serviceContent, 'heading', $currentLang) }}

@foreach($listings as $listing)
{{ $listing->translate?->title }}

{{ $listing->translate?->short_description }}

{{ __('translate.Learn More') }}
@endforeach

{{ __('translate.Explore our recent projects') }}

@foreach($projects->take(5) as $index => $project) {{-- For all projects except the last one --}} @if(!$loop->last)
image

{{ $project->translate?->title }}

@if($project->category && $project->category->translate) {{ $project->category->translate->name }} @elseif($project->category) {{ $project->category->name }} @endif

@endif @endforeach {{-- For the last project only --}} @if($projects->isNotEmpty()) @php $lastProject = $projects->last(); // Get the last project @endphp

{{ $lastProject->translate?->title }}

@if($lastProject->category && $lastProject->category->translate) {{ $lastProject->category->translate->name }} @elseif($lastProject->category) {{ $lastProject->category->name }} @endif

@endif
@include('frontend.templates.layouts.contact_section')

{{ getTranslatedValue($expertTeamContent, 'heading', $currentLang) }}

@foreach($teams as $team)
{{ $team->translate->name }}

{{ $team->translate->designation }}

@endforeach

{{ getTranslatedValue($ctaContent, 'heading', $currentLang) }}

{{ getTranslatedValue($ctaContent, 'description', $currentLang) }}

{{ getTranslatedValue($blogContent, 'heading', $currentLang) }}

@endsection