angelgoitia

Untitled

May 1st, 2022 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public function __construct()
  2. {
  3. $this->middleware(function (Request $request, $next) {
  4. if (!Auth::guard('web')->check() || Auth::user()->role != 1){
  5. Redirect::to(route('auth.login'))->send();
  6. }
  7. return $next($request);
  8. });
  9.  
  10. }
  11.  
  12. use Illuminate\Support\Facades\Auth;
Add Comment
Please, Sign In to add comment