where('category', $category); } return $query->order('sort', 'asc') ->order('id', 'asc') ->select() ->toArray(); } /** * 获取分类列表 */ public static function getCategories() { return self::where('status', 1) ->whereNotNull('category') ->where('category', '<>', '') ->group('category') ->column('category'); } }