@extends('layouts.app') @section('title', __('site.search_results.title')) @section('content') @php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; @endphp

{{ __('site.hero.welcome_title') }}

{{ __('site.hero.subtitle') }}


{{ __('site.search.title') }}

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

{{ __('site.results.header_query') }} {{ $query }}

{{ __('site.results.total_results') }} {{ $news->count() + $trophees->count() + $guides->count() }}
@if($news->isEmpty() && $trophees->isEmpty() && $guides->isEmpty())
{{ __('site.results.no_results') }}
@else
{{-- News --}} @if($news->count())

{{ __('site.results.section_news') }}

@foreach($news as $item)
@endforeach @endif {{-- Trophées --}} @if($trophees->count())

{{ __('site.results.section_trophees') }}

@foreach($trophees as $item)
@endforeach @endif {{-- Guides --}} @if($guides->count())

{{ __('site.results.section_guides') }}

@foreach($guides as $item)
@endforeach @endif
@endif
{{-- === JS Swiper === --}} @endsection