@php
$messageTypeConfigs = [
['color' => '#ef4444', 'icon' => '⚠️', 'label' => 'عاجلة', 'description' => 'رسائل تتطلب اهتمام فوري'],
['color' => '#f59e0b', 'icon' => '⭐', 'label' => 'مهمة', 'description' => 'رسائل ذات أولوية عالية'],
['color' => '#3b82f6', 'icon' => '📧', 'label' => 'عادية', 'description' => 'رسائل روتينية ومتابعة'],
['color' => '#10b981', 'icon' => '🔔', 'label' => 'إشعارات', 'description' => 'تنبيهات وإشعارات النظام'],
['color' => '#8b5cf6', 'icon' => '💼', 'label' => 'اجتماعات', 'description' => 'مستندات وتفاصيل الاجتماعات']
];
$messageTypes = $messages['data']['message_types_summary'] ?? [];
@endphp
@if(empty($messageTypes))
📭
لا توجد أنواع رسائل متاحة
@else
@foreach($messageTypes as $index => $type)
@php
$configIndex = $index % count($messageTypeConfigs);
$config = $messageTypeConfigs[$configIndex];
@endphp
📨
{{ $type['type_name'] }}
{{ $type['count'] }}
@endforeach
@endif