Answers for "laravel redirection"

PHP
3

laravel route redirect

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

Redirect::route('profile') and with() in laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', [$user]);
Posted by: Guest on May-30-2020
0

Redirect::route('profile') and with() in laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', [$user]);
Posted by: Guest on May-30-2020

Browse Popular Code Answers by Language