📜  laravel 返回重定向到命名路由 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:39.475000             🧑  作者: Mango

代码示例4
Route::post('/user/profile', function () {
    // Update the user's profile...

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