Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanesoft\Blog\Http\Controllers\Foundation; |
||
31 | public function index() |
||
32 | { |
||
33 | $this->authorize('blog.dashboard.stats'); |
||
34 | |||
35 | $title = 'Blog - Dashboard'; |
||
36 | $this->setTitle($title); |
||
37 | $this->addBreadcrumb('Statistics'); |
||
38 | |||
39 | return $this->view('foundation.dashboard'); |
||
40 | } |
||
41 | } |
||
42 |