How to use update Resource Controllers laravel 4?
问题 I have Customer Controller with index, edit, update methods Route::resource('customer', 'CustomerController'); Controller methods update public function update($id) { echo $id; } my HTML Form <form action="/customer/1" method="post"> <input type="text" name="email" value="" /> <input type="submit" value="" /> </form> I have following a Documentation here http://four.laravel.com/docs/controllers#resource-controllers PUT/PATCH /resource/{id} update It's seems not working for me, how to use it?