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