@extends('superadmin.layouts.app') @section('title', 'Content Moderation') @section('content')

Content Moderation

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

Total Reports

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

Pending Review

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

Resolved

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

Rejected

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

Reports Today

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

This Week

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

This Month

Top Report Reasons

@if($topReasons->count() > 0) @foreach($topReasons as $reason)
{{ $reason->count }}/{{ $stats['total'] }} {{ ucfirst($reason->reason) }}
@endforeach @else

No reports yet.

@endif

Filters and Search

Profile Reports

@if($reports->count() > 0) @foreach($reports as $report) @endforeach
ID Reported User Reporter Reason Status Date Actions
{{ $report->id }}
Avatar
{{ $report->reportedUser->name }}
@{{ $report->reportedUser->username }}
@if($report->reporterUser)
{{ $report->reporterUser->name }}
@{{ $report->reporterUser->username }}
@else Guest
{{ $report->reporter_email }} @endif
{{ $report->getReasonText() }} {{ $report->getStatusText() }} {{ $report->created_at->diffForHumans() }}
View @if($report->isPending()) @endif
@else
No reports found

There are no profile reports matching your criteria.

@endif
@if($reports->hasPages()) @endif
@endsection @section('scripts') @endsection