Answers for "laravel redirect http code"

PHP
2

laravel response redirect

#Method 1 with route name
return redirect()->route('login');

#Method 2 back with input
return back()->withInput();

#Method 2 using a url
return redirect('/home/dashboard');
Posted by: Guest on August-25-2021

Code answers related to "laravel redirect http code"

Browse Popular Code Answers by Language