AdminAuthenticate.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Closure;
  4. use Illuminate\Auth\AuthenticationException;
  5. use Illuminate\Auth\Middleware\Authenticate;
  6. use Illuminate\Support\Facades\Auth;
  7. //use Illuminate\Contracts\Auth\Factory as Auth;
  8. class AdminAuthenticate
  9. {
  10. /**
  11. * The authentication factory instance.
  12. *
  13. * @var \Illuminate\Contracts\Auth\Factory
  14. */
  15. protected $auth;
  16. /**
  17. * Create a new middleware instance.
  18. *
  19. * @param \Illuminate\Contracts\Auth\Factory $auth
  20. * @return void
  21. */
  22. public function __construct(Auth $auth)
  23. {
  24. $this->auth = $auth;
  25. }
  26. /**
  27. * Handle an incoming request.
  28. *
  29. * @param \Illuminate\Http\Request $request
  30. * @param \Closure $next
  31. * @param string[] ...$guards
  32. * @return mixed
  33. *
  34. * @throws \Illuminate\Auth\AuthenticationException
  35. */
  36. public function handle($request, Closure $next, ...$guards)
  37. {
  38. if (!Auth::guard('admin')->check()) {
  39. return redirect('/admin/login');
  40. }
  41. return $next($request);
  42. }
  43. }