How to update column value in laravel
问题 I have a page model. It has following columns in database table: id title image body I want to update only "image" column value. Here's my code: public function delImage($path, $id) { $page = Page::find($id); $page->where('image', $path)->update(array('image' => 'asdasd')); \File::delete($path); } it throws me an error, that i am trying to use where() on a non-object. How can i correctly update my "image" column value? 回答1: You may try this: Page::where('id', $id)->update(array('image' =>