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