2020-05-02 23:45:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class UserController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
public function showStaffMembers()
|
|
|
|
{
|
2020-05-03 03:10:33 +00:00
|
|
|
return view('dashboard.administration.staff-members');
|
2020-05-02 23:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function showPlayers()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|