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

{{ __('site.republic') }}

{{ __('site.ministry_name') }}

{{ __('site.gouvernorat_title_prefix') }} {{ trans_field($gouv->gouvernorat,'nom') ?? '' }}


{{ __('site.booking_title') }}

{{ __('site.centers_overview') }}

{{ trans_field($gouv->gouvernorat,'nom') ?? '' }}

{{-- Description 1 --}}
{{ trans_field($gouv->gouvernorat,'nom') ?? '' }}
{!! trans_field($gouv, 'desc1') !!}
{{-- Description 2 --}}
{{ trans_field($gouv->gouvernorat,'nom') ?? '' }}
{!! trans_field($gouv, 'desc2') !!}
{{-- Description 3 --}}
{{ trans_field($gouv->gouvernorat,'nom') ?? '' }}
{!! trans_field($gouv, 'desc3') !!}
{{-- Titre --}}
{{ __('site.centers_in_gouv_subtitle') }} {{ trans_field($gouv->gouvernorat,'nom') ?? '' }}

{{ __('site.centers_in_gouv_title') }} {{ trans_field($gouv->gouvernorat,'nom') ?? '' }}

{{-- Vérification --}} @if($auberges->isEmpty())
{{ __('site.no_centers_in_gouv') }}
@else
@foreach($auberges as $auberge)
{{ trans_field($auberge,'nom') ?? $auberge->nom }}

{{ trans_field($auberge,'nom') ?? $auberge->nom }}

{{-- Capacités --}}
@if($auberge->nb_chambres > 0) {{ $auberge->nb_chambres }} {{ __('site.beds_label') }} @endif @if($auberge->capacite_tentes > 0) {{ $auberge->capacite_tentes }} {{ __('site.tents_label') }} @endif
{{-- Services --}}
@if($auberge->services_auberge->isNotEmpty()) @foreach($auberge->services_auberge as $service)
{{ trans_field($service,'nom') ?? $service->nom_ar }}
@endforeach @else
-
@endif
{{-- Contact --}}
@if($auberge->contact_tel) {{ $auberge->contact_tel }} @endif @if($auberge->adresse) {{ $auberge->adresse }} @endif
{{-- Bouton --}} {{ __('site.book_now') }}
@endforeach
{{-- Boutons de navigation --}}
{{-- Dots --}}
@endif {{-- Bouton Tous les centres (commenté) --}}
{{ __('site.about_service_title') }}

{!! __('site.about_text') !!}

{{ __('site.about_we_offer') }}

  • {{ __('site.about_feature_rooms') }}
  • {{ __('site.about_feature_food') }}
  • {{ __('site.about_feature_facilities') }}
  • {{ __('site.about_feature_prices') }}

@push('scripts') @endpush
@endsection