whereIn('id',$ids)->update(['is_delete' => 1]); } public function findById($id) { return $this->find([ ['id',$id], ['is_delete', 0], ]); } }