Guest User

Untitled

a guest
Jun 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. // protect all methods in this class with Middleware admin
  4. // except userBugList() method
  5.  
  6. public function __construct() {
  7. $this->middleware('admin', ['except' => ['create', 'store', 'userBugList']]);
  8. }
Add Comment
Please, Sign In to add comment