query->get('search'); $products = Product::with('price') ->orWhere([['name', 'like', "%$search%"]]) ->orWhere([['subTitle', 'like', "%$search%"]])->get(); return $this->render('productList.html.twig', ['products' => $products ?? [], 'search' => $search]); } }