Rename dashboard to home.

This commit is contained in:
Taylor Otwell
2014-11-24 19:33:07 -06:00
parent 7a7e366da5
commit 634c96d8d9
6 changed files with 7 additions and 18 deletions

View File

@@ -36,7 +36,7 @@ class RedirectIfAuthenticated implements Middleware {
{
if ($this->auth->check())
{
return new RedirectResponse(url('/dashboard'));
return new RedirectResponse(url('/home'));
}
return $next($request);