forked from miguel456/rbrecruiter
20 lines
215 B
PHP
20 lines
215 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
class UserController extends Controller
|
||
|
{
|
||
|
|
||
|
public function showStaffMembers()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function showPlayers()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|