@extends('layouts.admin')
@section('header', 'Analytics')
@section('title', 'Analytics - Abuse AI')
@section('content')
Total Cases
{{ number_format($totalCases) }}
Open Cases
{{ number_format($openCases) }}
Total Reports
{{ number_format($totalReports) }}
Suspended Customers
{{ number_format($suspendedCustomers) }}
{{-- Cases by Type --}}
{{-- Cases by Status --}}
{{-- Reports per Day --}}
Reports per Day (Last 30 Days)
{{-- Top Abused IPs --}}
Top Abused IPs
| IP Address | Cases |
@foreach($topIps as $ip => $count)
| {{ $ip }} | {{ $count }} |
@endforeach
@if(empty($topIps))
| No data |
@endif
@endsection