@extends('front.layouts.app') @section('content')

{{ \App\Helpers\TranslationHelper::translate('Our Services') }}

{!! setting('description_section_services_home', app()->getLocale()) !!}

@foreach ($services as $service)

{{ $service->name }}

{!! Str::limit(strip_tags($service->description), 300, '...') !!}

Team
@endforeach

{!! setting('description_section_categories_service', app()->getLocale()) !!}

{{ setting('title_category_one_service', app()->getLocale()) }}

{!! setting('description_category_one_service', app()->getLocale()) !!}

{{ setting('title_category_tow_service', app()->getLocale()) }}

{!! setting('description_category_tow_service', app()->getLocale()) !!}

{{ setting('title_category_three_service', app()->getLocale()) }}

{!! setting('description_category_three_service', app()->getLocale()) !!}

{{ setting('title_category_four_service', app()->getLocale()) }}

{!! setting('description_category_four_service', app()->getLocale()) !!}

@endsection