| 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; |
||
| 32 | public function index() |
||
| 33 | { |
||
| 34 | $this->authorize('blog.categories.list'); |
||
| 35 | |||
| 36 | $title = 'Blog - Categories'; |
||
| 37 | $this->setTitle($title); |
||
| 38 | $this->addBreadcrumb('List all categories'); |
||
| 39 | |||
| 40 | return $this->view('foundation.categories.list'); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |