return ($request);
$products_form_cat = collect(Goods::with('product_url_cat')->whereHas('product_url_cat', function($query){$query->where('published', 1)->where('type', 2);})
->where('siteID', $siteID)->where('category', $category_id)->where('published', 1));
$goods = $products_form_cat->union(Goods::with('product_url_cat')->whereHas('product_url_cat', function($query){$query->where('published', 1)->where('type', 2);})
->where('siteID', $siteID)->where('category','!=', $category_id)->where('published', 1));
$goods->all();