$query, ]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere([ 'id_ticket' => $this->id_ticket, 'id_user' => $this->id_user, 'id_ticket_type' => $this->id_ticket_type, 'id_account' => $this->id_account, 'id_discount' => $this->id_discount, 'start' => $this->start, 'end' => $this->end, 'max_usage_count' => $this->max_usage_count, 'usage_count' => $this->usage_count, 'status' => $this->status, 'price_brutto' => $this->price_brutto, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]); $query->andFilterWhere(['like', 'comment', $this->comment]); return $dataProvider; } }