@php $title = admin_trans('banned_users'); $icon = 'user-x'; $stats = [['label' => 'Total Banned Users', 'value' => number_format($totalBanned), 'icon' => 'user-x', 'color' => 'danger']]; @endphp @extends('admin.analytics.base') @section('analytics-content') @if($data->isEmpty()) @else @foreach($data as $user) {{ $user->name }} {{ $user->email }} {{ ucfirst($user->role) }} {{ $user->updated_at->format('Y-m-d') }} @endforeach @if($data->hasPages())
@endif @endif @endsection