28 lines
888 B
PHP
28 lines
888 B
PHP
<?php
|
|
|
|
namespace Krzysiej\RyobiCrawler\Controller;
|
|
|
|
use Krzysiej\RyobiCrawler\Models\Product;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
use function Symfony\Component\Clock\now;
|
|
|
|
final class NewController extends BaseController
|
|
{
|
|
#[Route('/new', name: 'app_new')]
|
|
public function __invoke(): Response
|
|
{
|
|
if($this->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']);
|
|
}
|
|
}
|