diff --git a/app/api/lists/AnimalInfoLists.php b/app/api/lists/AnimalInfoLists.php index 128e477..5a55541 100644 --- a/app/api/lists/AnimalInfoLists.php +++ b/app/api/lists/AnimalInfoLists.php @@ -56,7 +56,6 @@ class AnimalInfoLists extends BaseApiDataLists implements ListsSearchInterface public function lists(): array { return AnimalInfo::where($this->searchWhere) - ->field(['id', 'fence_house_id', 'sn', 'animal_type', 'brand', 'physi_stage', 'gender', 'blood_purity', 'animal_source', 'current_estimation', 'algebra', 'birth', 'entry_date', 'birth_estimation', 'health_condition']) ->with(['fenceHouseAttr']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc'])