for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Http\Request;
class RedirectIfAuthenticated
{
protected $auth;
public function __construct(Guard $auth)
$this->auth = $auth;
}
/**
* @return mixed
*/
public function handle(Request $request, Closure $next)
if ($this->auth->check()) {
return redirect('/♫');
return $next($request);