$Shop_Controller_Show
->shopItems()
->queryBuilder()
->leftJoin('shop_warehouse_items', 'shop_warehouse_items.shop_item_id', '=', 'shop_items.id')
->clearOrderBy()
->groupBy('shop_items.id')
->orderBy('shop_warehouse_items.count', 'DESC');
$Shop_Controller_Show->show();