/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Loans::find(); $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 5]]); $this->load($params); if (!$this->validate()) { return $dataProvider; } $query->andFilterWhere(['loanId' => $this->loanId, 'userId' => $this->userId, 'amount' => $this->amount, 'interest' => $this->interest, 'duration' => $this->duration, 'dateApplied' => $this->dateApplied, 'dateLoanEnds' => $this->dateLoanEnds, 'campaign' => $this->campaign, 'status' => $this->status]); return $dataProvider; }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Loans::find(); $dataProvider = new ActiveDataProvider(['query' => $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->joinWith('user'); $query->andFilterWhere(['amount' => $this->amount, 'interest' => $this->interest, 'duration' => $this->duration, 'dateApplied' => $this->dateApplied, 'dateLoanEnds' => $this->dateLoanEnds, 'campaign' => $this->campaign, 'status' => $this->status])->andFilterWhere(['or', ['like', 'users.firstName', $this->userId], ['like', 'users.lastName', $this->userId]]); //->andFilterWhere(['like', 'users.lastName', $this->userId]) return $dataProvider; }