if (empty($category) || (is_array($category) && in_array('all', $category, true))) {
        $category = [];
    } else {
        $category = (!is_array($category)) ? explode(',', $category) : $category;
        $category = array_map('\intval', $category);