Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个表单来更新资源,我用工匠生成所有样板,现在我无法弄清楚如何update()在表单中指定到控制器方法的路由(我没有使用刀片),并将 id 传递给函数。我知道路线的形式是(例如) /user/8/update。我已经尝试过帮助者,但他们创建的路线并不指向更新方法。
update()
/user/8/update
任何想法?
我刚刚弄清楚如何使用 Laravel 的表单来做到这一点:
Form::open(array('action' => array('UserController@update', $user->id), 'method' => 'put', ));