@extends("admin.layout.master_layout") @section("title") الرئيسية @endsection @section("page-content")

الرئيسية

@php // ألوان الكروت — تدور بشكل تلقائي $colors = [ ['bg' => '#C9F7F5', 'text' => '#1BC5BD', 'icon' => 'fa-folder-open'], ['bg' => '#FFF4DE', 'text' => '#FFA800', 'icon' => 'fa-newspaper'], ['bg' => '#EEE5FF', 'text' => '#8950FC', 'icon' => 'fa-book'], ['bg' => '#FFE2E5', 'text' => '#F64E60', 'icon' => 'fa-bullhorn'], ['bg' => '#caf7c9', 'text' => '#35c51b', 'icon' => 'fa-heart'], ['bg' => '#d2c9f7', 'text' => '#6610f2', 'icon' => 'fa-briefcase'], ['bg' => '#f0c9f7', 'text' => '#a31bc5', 'icon' => 'fa-file-alt'], ['bg' => '#c9dbf7', 'text' => '#1b67c5', 'icon' => 'fa-chart-bar'], ]; $colorIndex = 0; @endphp {{-- ======== كرت المشاريع ======== --}} @php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp

عدد المشاريع


{{ $data['projects_count'] ?? 0 }}
{{-- ======== كرت الاستديو ======== --}} @php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp

الاستديو


{{ $data['studios_count'] ?? 0 }}
{{-- ======== كروت تصنيفات الأخبار — ديناميكية ======== --}} @if(isset($data['category_stats'])) @foreach($data['category_stats'] as $stat) @php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp

{{ $stat['name_ar'] }}


{{ $stat['count'] }}
@endforeach @endif {{-- ======== كرت إجمالي الأخبار والقصص ======== --}} @php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp

إجمالي المنشورات


{{ $data['news_total'] ?? 0 }}
@php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp

عدد الشركاء


{{ $data['parenter_total'] ?? 0 }}
@endsection