hypothetical/app/Http/Middleware/RedirectIfAuthenticated.php

31 lines
760 B
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
use App\Providers\RouteServiceProvider;
use Closure;
use Illuminate\Http\Request;
2016-01-03 23:55:13 -05:00
use Illuminate\Support\Facades\Auth;
2023-03-13 17:33:19 -04:00
use Symfony\Component\HttpFoundation\Response;
class RedirectIfAuthenticated
{
/**
* Handle an incoming request.
*
2023-03-13 17:33:19 -04:00
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
*/
2023-03-13 17:33:19 -04:00
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);
}
}