motocultrice labourer aussi les lieux sans email, et proposition opening hours

This commit is contained in:
Tykayn 2025-05-29 13:24:50 +02:00 committed by tykayn
parent 268ac799e4
commit cae369c9cd
9 changed files with 565 additions and 53 deletions

View file

@ -377,4 +377,14 @@ class PublicController extends AbstractController
'closed_places' => $closedPlaces
]);
}
#[Route('/places_with_note', name: 'app_public_places_with_note')]
public function places_with_note(): Response
{
$places = $this->entityManager->getRepository(Place::class)->findBy(['note' => '']);
return $this->render('public/places_with_note.html.twig', [
'controller_name' => 'PublicController',
'places' => $places
]);
}
}