Working on some customization.
This commit is contained in:
parent
9083f48e97
commit
7ba858ddf1
|
@ -18,4 +18,11 @@ class AuthController extends Controller {
|
||||||
|
|
||||||
use AuthenticatesAndRegistersUsers;
|
use AuthenticatesAndRegistersUsers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The path to send users after registration or login.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $redirectTo = '/home';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,4 +18,11 @@ class PasswordController extends Controller {
|
||||||
|
|
||||||
use ResetsPasswords;
|
use ResetsPasswords;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The path to send users after passwords are reset.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $redirectTo = '/home';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue