PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Middleware
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Support\Facades\Auth; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string|null $guard * @return mixed */ public function handle($request, Closure $next, $guard = null) { if (Auth::guard($guard)->check()) { return redirect()->route('user.home'); } return $next($request); } }
[-] TrustProxies.php
[edit]
[-] CheckForMaintenanceMode.php
[edit]
[-] TrimStrings.php
[edit]
[+]
..
[-] RedirectIfAdmin.php
[edit]
[-] RedirectIfAuthenticated.php
[edit]
[-] RedirectIfNotAdmin.php
[edit]
[-] LanguageMiddleware.php
[edit]
[-] Authenticate.php
[edit]
[-] AuthenticateApi.php
[edit]
[-] EncryptCookies.php
[edit]
[-] PreventRequestsDuringMaintenance.php
[edit]
[-] CheckStatusApi.php
[edit]
[-] AllowRegistration.php
[edit]
[-] CheckStatus.php
[edit]
[-] Demo.php
[edit]
[-] VerifyCsrfToken.php
[edit]
[-] TrustHosts.php
[edit]