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