Closed FabRiviere closed 1 year ago
Ajout d'une fonction show() dans le contrôleur ConferenceController.php :
#[Route('/conference/{id}', name: 'conference')]
public function show(Environment $twig, Conference $conference, CommentRepository $commentRepository): Response
{
return new Response($twig->render('conference/show.html.twig', [
'conference' => $conference,
'comments' => $commentRepository->findBy(['conference' => $conference], ['createdAt' => 'DESC']),
]));
}