joinWith([ 'categories', /*'variant'*/ ]) ->joinWith([ 'brand' => function($query) { /** * @var ActiveQuery $query */ $query->joinWith('lang'); }, ]); $query->groupBy([ 'product.product_id', 'brand_lang.name' ]); $dataProvider = new ActiveDataProvider([ 'query' => $query, ]); if(!( $this->load($params) && $this->validate() )) { return $dataProvider; } $dataProvider->setSort([ 'attributes' => [ 'brand_id' => [ 'asc' => [ 'brand_lang.name' => SORT_ASC ], 'desc' => [ 'brand_lang.name' => SORT_DESC ], 'default' => SORT_DESC, 'label' => 'Brand name', ], ], ]); if(isset( $this->is_top )) { $query->andFilterWhere([ 'is_top' => (bool) $this->is_top, ]); } if(isset( $this->is_new )) { $query->andFilterWhere([ 'is_new' => (bool) $this->is_new, ]); } if(isset( $this->akciya )) { $query->andFilterWhere([ 'akciya' => (bool) $this->akciya, ]); } $query->andFilterWhere([ 'product.brand_id' => $this->brand_id, 'product.product_id' => $this->product_id, 'product_category.category_id' => $this->category_id, ]); // $query->andFilterWhere(['ilike', 'brand.name', $this->brand_name]); // $query->andFilterWhere(['ilike', 'product_variant.sku', $this->variant_sku]); return $dataProvider; } }