我是 laravel 的新手。我唯一控制器的网址是
http://localhost/myapp/public/users
在表单功能的视图中,我不想为 post 功能做一个绝对路径,例如
<form method='post' action='/myapp/public/user/update-user'>
我只想将用户控制器设置为基本 url 路径,这样我就可以在我的表单中说
<form method='post' action='/update-user'>
这可能吗?