@if(session('success')) @endif

{{ number_format($stats['total_reports']) }}

إجمالي البلاغات

{{ number_format($stats['video_reports']) }}

بلاغات الفيديوهات

{{ number_format($stats['account_reports']) }}

بلاغات الحسابات

{{ number_format($stats['comment_reports']) }}

بلاغات التعليقات

@forelse($paginator as $report) @empty @endforelse
# النوع المبلغ السبب التفاصيل التاريخ الإجراءات
{{ $report->id }} @if($report->report_type == 'video') فيديو @elseif($report->report_type == 'account') حساب @else تعليق @endif @if($report->reporter)
{{ mb_substr($report->reporter->name, 0, 1) }}
{{ $report->reporter->name }}
@else مستخدم محذوف @endif
{{ $report->getReasonText() }}
{{ Str::limit($report->comment ?? '-', 50) }}
{{ $report->createdAt ? $report->createdAt->diffForHumans() : '-' }}
@csrf
لا توجد بلاغات
@if($paginator->hasPages())
{{ $paginator->links() }}
@endif