redirect to previous location with model laravel code example
Example: redirect to route laravel
Route::post('/user/profile', function () {
// Update the user's profile...
return redirect('/dashboard')->with('status', 'Profile updated!');
});