@extends('admin.layout') @section('title', 'Users') @section('subtitle', $users->total() . ' total') @section('content')
@if (request('search') || request('filter')) Reset @endif
@forelse ($users as $user) @empty @endforelse
User Email Level / XP Coins Energy Games Status
{{ $user->battle_name ?? '—' }}
{{ $user->name }}
{{ $user->email }}
Lv {{ $user->level }}
{{ number_format($user->xp) }} XP
{{ number_format($user->coins) }} {{ $user->energy }}
{{ $user->games_played }}
{{ $user->games_won }} won
@if ($user->is_banned) Banned @endif @if ($user->is_admin) Admin @endif @if (! $user->is_banned && ! $user->is_admin) active @endif View
No users match.
{{ $users->links() }}
@endsection