@extends('web.layouts.app', ['title' => 'Admin Dashboard'])
@section('content')
Users{{ $users }}
Open Reports{{ $reports }}
Support{{ $tickets }}
Recent Payments{{ $payments->count() }}
@foreach($moderation as $action)
{{ $action->action }} target #{{ $action->target_user_id }}
@endforeach
@foreach($audit as $log)
{{ $log->action }} {{ $log->created_at?->diffForHumans() }}
@endforeach
@endsection