'integer', 'meal_id' => 'integer', 'image_id' => 'integer']; const string CREATED_AT = 'create_time'; const string UPDATED_AT = 'update_time'; /** * @param int $cycleId * @param int $kitchenId * @return Builder[]|Collection */ public function getListByCycleIdAndKitchenId(int $cycleId, int $kitchenId): Collection|array { return $this->where('cycle_id',$cycleId)->where('kitchen_id',$kitchenId)->select('id','name','remark','sku_ids','image_id')->get(); } }