Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class AdminDetailsController extends Controller |
||
9 | { |
||
10 | /** |
||
11 | * Create a new controller instance. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function __construct() |
||
16 | { |
||
17 | $this->middleware('auth'); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Display a listing of the resource. |
||
22 | * |
||
23 | * @return \Illuminate\Http\Response |
||
24 | */ |
||
25 | public function listRoutes() |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Display active users page. |
||
37 | * |
||
38 | * @return \Illuminate\Http\Response |
||
39 | */ |
||
40 | public function activeUsers() |
||
47 |