Answers for "how to redirect to another route laravel controller"

C#
3

laravel route redirect

Route::redirect('/here', '/there');
or
return redirect(route('register'));
Posted by: Guest on July-17-2021
0

return redirect to another url in controller laravel

return redirect('/home/dashboard');
Posted by: Guest on December-06-2021

Code answers related to "how to redirect to another route laravel controller"

C# Answers by Framework

Browse Popular Code Answers by Language