I am using Laravel 5.
I wanted to redirect a user after a successful registration. I have tried these in my authcontroller but it doesn't work.
protected $loginPath = '/plan';
protected $redirectTo = '/plan';
protected $redirectAfterRegister = 'plan/';
These work on successful login though but not after registration.
I have also tried postRegister
to render a view but using a postRegister
method overrides the registration process and I don't want to do that. I just want to redirect the user to a page on successful registration.
There are two options to specify where to redirect the user in the app/Http/Controllers/Auth/RegisterController.php
For a simple URL you can override this property.
If you have a more complicated logic than just one static URL, since Laravel 5.3 you can add a method in the same class RegisterController, with name redirectTo():
The method behavior will override $redirectTo property value, even if the value is present.