@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
{{-- ======== كرت الاستديو ======== --}}
@php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp
{{-- ======== كروت تصنيفات الأخبار — ديناميكية ======== --}}
@if(isset($data['category_stats']))
@foreach($data['category_stats'] as $stat)
@php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp
@endforeach
@endif
{{-- ======== كرت إجمالي الأخبار والقصص ======== --}}
@php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp
@php $c = $colors[$colorIndex % count($colors)]; $colorIndex++; @endphp