]> _ Git - odl.git/commitdiff
wip #4765
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 11 Oct 2021 12:58:41 +0000 (14:58 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 11 Oct 2021 12:58:41 +0000 (14:58 +0200)
app/Http/Middleware/RedirectIfAuthenticated.php

index 362b48b0dc3fc76573b8037045feda3050bf2485..161b18e4e8aa010f32799994fbbc60db7d5ec048 100644 (file)
@@ -21,6 +21,8 @@ class RedirectIfAuthenticated
     {
         $guards = empty($guards) ? [null] : $guards;
 
+        dd($guards);
+
         foreach ($guards as $guard) {
             if (Auth::guard($guard)->check()) {
                 return redirect(RouteServiceProvider::HOME);