Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php namespace Arcanesoft\Auth\Http\Controllers\Admin; |
||
34 | public function index() |
||
35 | { |
||
36 | $this->authorize(DashboardPolicy::PERMISSION_STATS); |
||
37 | |||
38 | $title = 'Authorization - Dashboard'; |
||
39 | $this->setTitle($title); |
||
40 | $this->addBreadcrumb('Statistics'); |
||
41 | |||
42 | return $this->view('admin.dashboard'); |
||
43 | } |
||
44 | } |
||
45 |