bristol-su /
static-page
| 1 | <?php |
||
| 2 | |||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 3 | namespace BristolSU\Module\StaticPage\Http\Controllers; |
||
| 4 | |||
| 5 | class AdminPageController extends Controller |
||
|
0 ignored issues
–
show
|
|||
| 6 | { |
||
| 7 | |||
| 8 | 2 | public function index() |
|
|
0 ignored issues
–
show
|
|||
| 9 | { |
||
| 10 | 2 | $this->authorize('admin.view-page'); |
|
| 11 | |||
| 12 | 1 | return view('static-page::admin'); |
|
| 13 | } |
||
| 14 | |||
| 15 | } |