$post = Post::find(3); $post->title = "Updated title"; $post->save(); or $affectedRows = Post::where("id", 3)->update(["title" => "Updated title"]);