@extends('layouts.default') @section('title', __('local.meta.title')) @section('meta_description', __('local.meta.description')) @section('canonical', route('local-services')) @section('structured_data') @php $serviceAreas = array_map( static fn (string $city): array => ['@type' => 'City', 'name' => $city], __('local.areas.cities') ); $localStructuredData = [ '@context' => 'https://schema.org', '@graph' => [ [ '@type' => 'Service', '@id' => route('local-services').'#service', 'name' => __('local.schema.name'), 'serviceType' => __('local.schema.service_type'), 'description' => __('local.meta.description'), 'url' => route('local-services'), 'provider' => ['@id' => route('home').'#person'], 'areaServed' => $serviceAreas, ], [ '@type' => 'BreadcrumbList', 'itemListElement' => [ [ '@type' => 'ListItem', 'position' => 1, 'name' => __('global.navigation.home'), 'item' => route('home'), ], [ '@type' => 'ListItem', 'position' => 2, 'name' => __('local.breadcrumb'), 'item' => route('local-services'), ], ], ], ], ]; @endphp @endsection @section('styles') @endsection @section('content')
{{ __('local.header.tag') }}

{{ __('local.header.title') }}

{{ __('global.tree.back-btn') }}
{{ __('global.navigation.home') }}  >  {{ __('local.breadcrumb') }}

{{ __('local.intro.text') }}

{{ __('local.intro.title') }}

{{ __('local.services.intro') }}

@foreach(__('local.services.items') as $service)

{{ $service['title'] }}

{{ $service['text'] }}

@endforeach

{{ __('local.areas.title') }}

{{ __('local.areas.text') }}

    @foreach(__('local.areas.cities') as $city)
  • {{ $city }}
  • @endforeach

{{ __('local.approach.title') }}

{{ __('local.approach.text') }}

{{ __('local.faq.title') }}

@foreach(__('local.faq.items') as $item)
{{ $item['question'] }}

{{ $item['answer'] }}

@endforeach
@endsection