Working on some customization.

This commit is contained in:
Taylor Otwell 2014-11-29 14:11:26 -06:00
parent 9083f48e97
commit 7ba858ddf1
2 changed files with 14 additions and 0 deletions

View File

@ -18,4 +18,11 @@ class AuthController extends Controller {
use AuthenticatesAndRegistersUsers;
/**
* The path to send users after registration or login.
*
* @var string
*/
protected $redirectTo = '/home';
}

View File

@ -18,4 +18,11 @@ class PasswordController extends Controller {
use ResetsPasswords;
/**
* The path to send users after passwords are reset.
*
* @var string
*/
protected $redirectTo = '/home';
}