Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function __construct()
- {
- $this->middleware(function (Request $request, $next) {
- if (!Auth::guard('web')->check() || Auth::user()->role != 1){
- Redirect::to(route('auth.login'))->send();
- }
- return $next($request);
- });
- }
- use Illuminate\Support\Facades\Auth;
Add Comment
Please, Sign In to add comment