public function search($params)
 {
     $query = Address::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['address_id' => $this->address_id, 'city_id' => $this->city_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'address2', $this->address2])->andFilterWhere(['like', 'district', $this->district])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }
 /**
  * Finds the Address model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Address the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Address::findOne($id)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }