Ejemplo n.º 1
0
 public function actionSearch($text)
 {
     $text = filter_var($text, FILTER_SANITIZE_STRING);
     return $this->render('search', ['text' => $text, 'items' => Catalog::items(['where' => ['or', ['like', 'title', $text], ['like', 'description', $text]]])]);
 }