File "RedirectIfAuthenticated.php"

Full Path: /home/trinadezambia/public_html/gambling/app/Http/Middleware/RedirectIfAuthenticated.php
File size: 334 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Support\Facades\Auth;

class RedirectIfAuthenticated
{
    public function handle($request, Closure $next, $guard = null)
    {

        if (Auth::guard($guard)->check()) {
            return to_route('user.home');
        }

        return $next($request);

    }
}