You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
760 B
30 lines
760 B
<?php |
|
|
|
namespace App\Http\Middleware; |
|
|
|
use App\Providers\RouteServiceProvider; |
|
use Closure; |
|
use Illuminate\Http\Request; |
|
use Illuminate\Support\Facades\Auth; |
|
use Symfony\Component\HttpFoundation\Response; |
|
|
|
class RedirectIfAuthenticated |
|
{ |
|
/** |
|
* Handle an incoming request. |
|
* |
|
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next |
|
*/ |
|
public function handle(Request $request, Closure $next, string ...$guards): Response |
|
{ |
|
$guards = empty($guards) ? [null] : $guards; |
|
|
|
foreach ($guards as $guard) { |
|
if (Auth::guard($guard)->check()) { |
|
return redirect(RouteServiceProvider::HOME); |
|
} |
|
} |
|
|
|
return $next($request); |
|
} |
|
}
|
|
|