@extends('adminlte::page') @section('title', 'Raspberry Network | Registered Players') @section('content_header')

Administration / Registered Players

@stop @section('js') @stop @section('content')

{{$users->count()}}

Registered Players

{{$bannedUserCount}}

Total Banned Players

I

Search Players

@csrf

Please note: This list only includes players registered in the team management portal. In a future release, all network players will be shown here.

Player Listing

@if (!$users->isEmpty()) @foreach($users as $user) @endforeach
# IGN UUID Email Status Registration Date Actions
{{$user->id}} {{UUID::toUsername($user->uuid)}} {{$user->uuid}} {{ $user->email }} @if ($user->isBanned()) Banned @else Active @endif {{$user->created_at}}
@else
There are no registered players!

Registered players are those without a staff role in the team management application. There may be other users registered in the platform, but they won't be displayed here.

@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop