Answers for "redirect route with message and echo the message in blade laravel 8"

PHP
2

return redirect with message laravel

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

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

Code answers related to "redirect route with message and echo the message in blade laravel 8"

Browse Popular Code Answers by Language