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 メソッドを指していません。
update()
/user/8/update
何か案が?
Laravelのフォームを使用してそれを行う方法を理解しました:
Form::open(array('action' => array('UserController@update', $user->id), 'method' => 'put', ));