laravel redirect with message to section

49

return redirect with message laravel -

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

    return redirect('dashboard')->with('status', 'Profile updated!');
});

Comments

Submit
0 Comments