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.posts.list'); |
||
35 | |||
36 | $title = 'Blog - Posts'; |
||
37 | $this->setTitle($title); |
||
38 | $this->addBreadcrumb('List all posts'); |
||
39 | |||
40 | return $this->view('foundation.posts.list'); |
||
41 | } |
||
42 | } |
||
43 |