#pluck

Laravel中pluck的使用——返回指定的字段值信息列表

$model=self::where(['is_delete'=>0,'is_on_sale'=>1])->whereIn('goods.cat_id',GoodsCategory::getCategoryIds($category))->pluck('brand_id');returnself...