{{-- 🔥 الأكثر قراءة --}}
{{-- 🔥 الأكثر قراءة --}}
@php
use App\Models\Post;
$trending = Post::published()
->withCount([
'visits as total_visits' => function ($q) {
$q->where('visitable_type', Post::class);
}
])
->orderByDesc('total_visits')
->limit(5)
->get();
@endphp
@if($trending->count())