public function actionView($id)
 {
     // Провайдер продуктов
     $dataProvider = new ActiveDataProvider(['query' => Product::getProductsGroup($id), 'pagination' => ['pageSize' => 60]]);
     return $this->render('view', ['model' => $this->findModel($id), 'dataProvider' => $dataProvider]);
 }