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