@extends('layouts.superadmin') @section('title','غرفة رولا — الدعم المعنوي') @section('page-title','🤝 الدعم المعنوي — صبايا التيم') @section('content')
{{-- ملخص سريع --}}
@php $sections = [ ['key'=>'needs_warm', 'title'=>'💌 بحاجة تواصل لطيف', 'color'=>'from-rose-50 to-rose-100'], ['key'=>'returning', 'title'=>'🌱 عائدة بعد انقطاع', 'color'=>'from-emerald-50 to-emerald-100'], ['key'=>'appreciate', 'title'=>'👏 تستحق تقدير', 'color'=>'from-amber-50 to-amber-100'], ['key'=>'consistent', 'title'=>'📅 انضباط مستمر', 'color'=>'from-violet-50 to-violet-100'], ]; @endphp @foreach($sections as $sec) @php $items = $cards[$sec['key']] ?? collect(); @endphp

{{ $sec['title'] }}

الأسبوع: {{ $period[0] }} → {{ $period[1] }}
@if($items->isEmpty())
لا يوجد مرشحات لهذا القسم.
@else
@foreach($items as $i)
{{ $i->name }}
{{ $i->username ?? '—' }}
{{ $i->badge }}
{{ $i->metric }}

{{ $i->hint }}

@if(Route::has('superadmin.admin-messages.index')) @endif
@endforeach
@endif
@endforeach
* تُحسب الترشيحات تلقائيًا من التواجد، النقاط، الغياب، المخالفات — مجرد مؤشرات للعمل الإنساني اللطيف 💗
@endsection