diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php
index 98f34dc..19ee9ae 100644
--- a/app/Http/Controllers/UserController.php
+++ b/app/Http/Controllers/UserController.php
@@ -14,6 +14,6 @@ class UserController extends Controller
public function showPlayers()
{
-
+ return view('dashboard.administration.players');
}
}
diff --git a/resources/views/dashboard/administration/players.blade.php b/resources/views/dashboard/administration/players.blade.php
new file mode 100644
index 0000000..80d47cc
--- /dev/null
+++ b/resources/views/dashboard/administration/players.blade.php
@@ -0,0 +1,149 @@
+@extends('adminlte::page')
+
+@section('title', 'Raspberry Network | Registered Players')
+
+@section('content_header')
+
+
Administration / Registered Players
+
+@stop
+
+@section('content')
+
+
+
+
+
+
+
11
+
+
Registered Players
+
+
+
+
+
+
+
+
+
+
+
+
200
+
+
Total Banned Players
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Please note: This list only includes players registered in the team management portal. In a future release, all network players will be shown here.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ # |
+ IGN |
+ UUID |
+ Status |
+ Registration Date |
+ Actions |
+
+
+
+
+
+
+ 1 |
+ Notch |
+ 069a79f4-44e9-4726-a5be-fca90e38aaf5 |
+ Active |
+ 2020-02-10 |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@stop
diff --git a/resources/views/dashboard/administration/staff-members.blade.php b/resources/views/dashboard/administration/staff-members.blade.php
index 471f77a..47a09ff 100644
--- a/resources/views/dashboard/administration/staff-members.blade.php
+++ b/resources/views/dashboard/administration/staff-members.blade.php
@@ -1,6 +1,6 @@
@extends('adminlte::page')
-@section('title', 'Raspberry Network | Applications')
+@section('title', 'Raspberry Network | Staff Members')
@section('content_header')
@@ -172,7 +172,7 @@
diff --git a/routes/web.php b/routes/web.php
index 42a7f20..c8a7195 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -55,7 +55,11 @@ Route::group(['middleware' => 'auth'], function(){
Route::group(['prefix' => '/hr'], function (){
- Route::get('staff-members', 'UserController@showStaffMembers');
+ Route::get('staff-members', 'UserController@showStaffMembers')
+ ->name('staffMemberList');
+
+ Route::get('players', 'UserController@showPlayers')
+ ->name('registeredPlayerList');
});