cache->getItem('list_new')->isHit()) { return $this->render('productList.html.twig', ['listType' => 'new']); } $date = now()->modify('-30 days')->format('Y-m-d'); $products = Product::where('created_at', '>', $date) ->with(['country', 'stock']) ->orderByDesc('starred') ->orderByDesc('created_by') ->get(); return $this->render('productList.html.twig', ['products' => $products, 'listType' => 'new']); } }