for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\User\Http\Middleware;
use Illuminate\Support\Facades\Redirect;
use Modules\Core\Contracts\Authentication;
class GuestMiddleware
{
/**
* @var Authentication
*/
private $auth;
public function __construct(Authentication $auth)
$this->auth = $auth;
}
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
public function handle($request, \Closure $next)
if ($this->auth->check()) {
return Redirect::route(config('asgard.user.users.redirect_route_after_login'));
return $next($request);