@extends('admin.layout') @section('title', 'لوحة التحكم — نظام مقالاتي') @push('css') @endpush @section('content')
{{-- 🧭 الهيدر --}}

لوحة التحكم — نظام مقالاتي

مرحبًا بك 👋 — استعرض أهم الإحصاءات والمحتوى الخاص بك بسهولة

{{-- 📊 البطاقات --}}
المقالات

{{ $postsCount }}

الأقسام

{{ $categoriesCount }}

التعليقات

{{ $commentsCount }}

الإعلانات

{{ $adsCount }}

المستخدمون

{{ $usersCount }}

الوسوم

{{ $tagsCount }}

الصفحات

{{ $pagesCount }}

الفيديوهات

{{ $videosCount }}

الجرائد

{{ $newspapersCount }}

العاجلة

{{ $breakingsCount }}

الزيارات

{{ number_format($visitsCount) }}

{{-- 🏆 الأقسام الإضافية --}}

🏆 أكثر المقالات زيارة

@if($topPosts->isEmpty())

لا توجد زيارات بعد.

@else
    @foreach($topPosts as $post)
  • {{ Str::limit($post->title, 40) }} {{ $post->visits_count }} زيارة
  • @endforeach
@endif

📄 أكثر الصفحات زيارة

@if($topPages->isEmpty())

لا توجد زيارات بعد.

@else
    @foreach($topPages as $page)
  • {{ Str::limit($page->title, 40) }} {{ $page->visits_count }} زيارة
  • @endforeach
@endif
@endsection