@extends('layouts.superadmin') @section('title', 'تحليلات اقرأني') @section('content')
{{-- Hero --}}

تحليلات مقالات اقرأني

من قرأ، من لم يقرأ، نسب الالتزام، وتحليل النظام لكل مقال تم نشره داخل الفريق.

@if($overall['articles_count'] > 0)
عدد المقالات
{{ $overall['articles_count'] }}
متوسط نسبة القراءة
{{ $overall['avg_percentage'] }}%
إجمالي القراءات المسجّلة
{{ $overall['total_reads'] }}
عدد الأعضاء المستهدفين
{{ $overall['target_users'] }}
@endif
{{-- Tabs للفلاتر --}}
@php $baseUrl = route('superadmin.daily-reading-analytics.index'); @endphp كل المقالات المقالات الفعّالة المقالات المنتهية
إجمالي: {{ $readings->total() }} مقال
{{-- قائمة المقالات --}}
@forelse($readings as $reading) @php $s = $perReadingStats[$reading->id] ?? null; $statusText = $reading->is_active ? 'فعّال' : 'غير فعّال'; $statusColor = $reading->is_active ? 'bg-emerald-100 text-emerald-700' : 'bg-gray-100 text-gray-700'; if ($reading->expires_at && $reading->expires_at->isPast()) { $statusText = 'منتهي'; $statusColor = 'bg-rose-100 text-rose-700'; } @endphp

{{ $reading->title }}

{{ optional($reading->starts_at)->format('Y/m/d H:i') ?? $reading->created_at->format('Y/m/d H:i') }}

{{ $statusText }} @if($s) نسبة القراءة: {{ $s['percentage'] }}% @endif
@if($s)
إجمالي المستهدفين
{{ $s['total_users'] }}
من قرأ
{{ $s['read_count'] }}
لم يقرأوا
{{ $s['not_read_count'] }}
نسبة القراءة
{{ $s['percentage'] }}%
{{-- شريط نسبة القراءة --}}
@endif
@empty

لا توجد مقالات لعرض تحليلاتها حالياً.

@endforelse
{{ $readings->withQueryString()->links() }}
@endsection