PHP Classes

File: server/app/Http/Middleware/RedirectIfAuthenticated.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Http/Middleware/RedirectIfAuthenticated.php   Download  
File: server/app/Http/Middleware/RedirectIfAuthenticated.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 734 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

use
App\Providers\RouteServiceProvider;
use
Closure;
use
Illuminate\Http\Request;
use
Illuminate\Support\Facades\Auth;

class
RedirectIfAuthenticated
{
   
/**
     * Handle an incoming request.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Closure $next
     * @param string|null ...$guards
     * @return mixed
     */
   
public function handle(Request $request, Closure $next, ...$guards)
    {
       
$guards = empty($guards) ? [null] : $guards;

        foreach (
$guards as $guard) {
            if (
Auth::guard($guard)->check()) {
                return
redirect(RouteServiceProvider::HOME);
            }
        }

        return
$next($request);
    }
}