@extends('layouts.app') @section('title', 'نتائج البحث') @section('content')

مرحبا بكم في موقعنا

بحث سريع عن الأخبار، التتويجات، والأدلة — اكتب كلمة أو جملة للبحث.

ابحث في الموقع

{{-- === Résultats === --}}

نتائج البحث عن: {{ $query }}

إجمالي النتائج: {{ $news->count() + $trophees->count() + $guides->count() }}
@if($news->isEmpty() && $trophees->isEmpty() && $guides->isEmpty())
لم يتم العثور على نتائج.
@else
{{-- News --}} @if($news->count())

📰 الأخبار

@foreach($news as $item)
{{-- Si tu as une image miniature, afficher ici --}} @if(!empty($item->thumbnail)) @endif
{!! highlight($item->title, $query) !!}
{{ $item->created_at->format('Y-m-d') }}

{!! highlight(strip_tags($item->excerpt ?? \Illuminate\Support\Str::limit($item->content, 150)), $query) !!}

الأخبار قراءة المزيد
@endforeach @endif {{-- Trophées --}} @if($trophees->count())

🏆 التتويجات الرياضية

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

📚 الأدلة

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