<?php
namespace App\Controller;
use App\Entity\Site;
use App\Repository\SiteRepository;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class SitesController extends AbstractController
{
#[Route('/realisations', name: 'realisations')]
public function realisations(SiteRepository $siteRepository): Response
{
$sites = $siteRepository->findBy(
array(),
array('createdAt' => 'DESC')
);
return $this->render('frontend/realisations.html.twig', [
'sites' => $sites,
]);
}
#[Route('/{slug}', name: 'site_show')]
public function show(Site $site): Response
{
return $this->render('frontend/realisations_detail.html.twig', [
'site' => $site,
]);
}
}