fix conflicts

This commit is contained in:
Taylor Otwell
2015-12-03 12:26:26 -06:00
6 changed files with 6 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ class RedirectIfAuthenticated
public function handle($request, Closure $next)
{
if (Auth::check()) {
return redirect('/home');
return redirect('/');
}
return $next($request);