@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('front-content') @php $currentLang = session()->get('front_lang'); $heroContent = getContent('it_solutions_hero_section.content', true); $aboutUsContent = getContent('it_solutions_about_us.content', true); $counterContent = getContent('it_consulting_counter_section.content', true); $serviceContent = getContent('main_demo_service_section.content', true); $blogContent = getContent('main_demo_blog_section.content', true); $contactContent = getContent('contact_form_section.content', true); $contactInfoContent = getContent('contact_info_section.content', true); $pricingContent = getContent('it_solutions_pricing_section.content', true); $packageInformation = $currentLang === 'en' ? ($pricingContent->data_values['package_information'] ?? []) : getTranslatedValue($pricingContent, 'package_information', $currentLang); @endphp

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

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

{{ 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) }}
Image 1
+

{{ getTranslatedValue($counterContent, 'title_1', $currentLang) }}

Image 2
+

{{ getTranslatedValue($counterContent, 'title_2', $currentLang) }}

Image 3
+

{{ getTranslatedValue($counterContent, 'title_3', $currentLang) }}

%

{{ getTranslatedValue($counterContent, 'title_4', $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 as $index => $project)
Image

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

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

@endforeach
@include('frontend.templates.layouts.process_section')

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

@if(is_array($packageInformation)) @foreach($packageInformation as $packageKey => $package)

{{ $package['title'] ?? '' }}

{{ $package['description'] ?? '' }}

${{ $package['price'] ?? '0' }}/{{ __('translate.month') }}

    @if(isset($package['features']) && is_array($package['features'])) @foreach($package['features'] as $featureKey => $feature)
  • {{ $feature }}
  • @endforeach @endif
{{ __('translate.Select This Plan') }}
@endforeach @else

{{ __('translate.No pricing packages available') }}.

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

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

@endsection