{{-- resources/views/tests/weekly/partials/_kpi.blade.php --}} @php $trafficChip = match($kpi->traffic->key ?? 'green'){ 'green' => 'bg-emerald-100 text-emerald-700 border-emerald-200', 'yellow' => 'bg-amber-100 text-amber-700 border-amber-200', default => 'bg-rose-100 text-rose-700 border-rose-200', }; @endphp

لوحة معدل العضو

محاولاتك: {{ $kpi->total_attempts }} — الإشارة: {{ $kpi->traffic->icon }} {{ $kpi->traffic->label }}

{{ $kpi->traffic->icon }} {{ $kpi->traffic->label }}
معدلك العام
{{ $kpi->avg_all !== null ? $kpi->avg_all.'%' : '—' }}
معدلك الشهر الحالي
{{ $kpi->avg_current !== null ? $kpi->avg_current.'%' : '—' }}
معدلك الشهر السابق
{{ $kpi->avg_prev !== null ? $kpi->avg_prev.'%' : '—' }}
نسبة تقدمك
{{ $kpi->progress >= 0 ? '+' : '' }}{{ $kpi->progress }}%
نصيحة ذكاء: {{ $kpi->advice }}