Answers for "laravel redirect to another function in controller"

PHP
2

redirect from controller in laravel

return redirect()->route('login');
Posted by: Guest on January-30-2021
3

redirect to route laravel

Route::post('/user/profile', function () {
    // Update the user's profile...

    return redirect('/dashboard')->with('status', 'Profile updated!');
});
Posted by: Guest on December-10-2020

Code answers related to "laravel redirect to another function in controller"

Browse Popular Code Answers by Language