cache->getItem('list_discontinued')->isHit()) { return $this->render('productList.html.twig', ['listType' => 'discontinued']); } $products = Product::where('lastSeen', '<', now()->format('Y-m-d')) ->orderByDesc('starred') ->orderByDesc('created_by') ->get(); return $this->render('productList.html.twig', ['products' => $products, 'listType' => 'discontinued']); } }