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

$model = self::where(['is_delete' => 0, 'is_on_sale' => 1])
            ->whereIn('goods.cat_id', GoodsCategory::getCategoryIds($category))
            ->pluck('brand_id');
return self::formatBody(['brands' => $model->toArray()]);
原文地址:https://www.cnblogs.com/firstcsharp/p/8073069.html