@extends('layouts.superadmin') @section('title','رادار الهدف - ProMission') @section('page-title','رادار الهدف - ProMission') @section('content') @php $chip = fn($v)=> $v>=100 ? 'bg-emerald-500/15 text-emerald-200 border-emerald-500/25' : 'bg-amber-500/15 text-amber-200 border-amber-500/25'; @endphp
{{-- Header --}}

رادار الهدف

يعرض “نقطة الاختناق” الحالية + أفضل/أضعف مساهمين + توصية ذكية.

الفترة: {{ $from }}{{ $to }}
{{-- Filters --}}
{{-- KPI cards --}}
الإجمالي
{{ $kpi['total_hours'] }}س
{{ $kpi['pct_total'] }}%
لايف
{{ $kpi['live_hours'] }}س
{{ $kpi['pct_live'] }}%
سهرة
{{ $kpi['sahra_hours'] }}س
{{ $kpi['pct_sahra'] }}%
قست
{{ $kpi['guest_count'] }}
{{ $kpi['pct_guest'] }}%
{{-- Bottleneck + AI --}}
نقطة الاختناق: {{ $bottleneck['label'] }} ({{ $bottleneck['ratio'] }}% نقص نسبي)
متبقي إجمالي
{{ $gaps['total'] }}س
متبقي لايف
{{ $gaps['live'] }}س
متبقي سهرة
{{ $gaps['sahra'] }}س
متبقي قست
{{ $gaps['guest'] }}
تحليل ذكي
    @foreach(($ai['tips'] ?? []) as $t)
  • • {{ $t }}
  • @endforeach
{{-- Top / bottom lists --}}
Top 10 (الأعلى ساعات)
@foreach($topTotal as $r)
{{ $r['name'] }}
{{ $r['username'] }}
{{ $r['total'] }}س
مساهمة: {{ $r['share_total'] }}%
@endforeach
Bottom 10 (الأقل ساعات)
@foreach($bottomTotal as $r)
{{ $r['name'] }}
{{ $r['username'] }}
{{ $r['total'] }}س
مساهمة: {{ $r['share_total'] }}%
@endforeach
@endsection