♻️  refactor(routes): Corrige les noms des routes pour 'reservation' au lieu de 'revervation'.
```
This commit is contained in:
Serreau Jovann
2026-01-20 11:58:29 +01:00
parent 2db673c0d3
commit b5d5ee95bb
10 changed files with 43 additions and 38 deletions

View File

@@ -40,12 +40,12 @@ class ReserverController extends AbstractController
'Content-Type' => 'text/plain'
]);
}
#[Route('/reservation', name: 'revervation')]
#[Route('/reservation', name: 'reservation')]
public function revervation()
{
return $this->render('revervation/home.twig');
}
#[Route('/reservation/contact', name: 'revervation_contact')]
#[Route('/reservation/contact', name: 'reservation_contact')]
public function revervationContact()
{
return $this->render('revervation/home.twig');
@@ -55,27 +55,27 @@ class ReserverController extends AbstractController
{
}
#[Route('/reservation/mentions-legal', name: 'revervation_mentions-legal')]
#[Route('/reservation/mentions-legal', name: 'reservation_mentions-legal')]
public function revervationLegal()
{
return $this->render('revervation/legal.twig');
}
#[Route('/reservation/rgpd', name: 'revervation_rgpd')]
#[Route('/reservation/rgpd', name: 'reservation_rgpd')]
public function revervationRgpd()
{
return $this->render('revervation/rgpd.twig');
}
#[Route('/reservation/cookies', name: 'revervation_cookies')]
#[Route('/reservation/cookies', name: 'reservation_cookies')]
public function revervationCookies()
{
return $this->render('revervation/cookies.twig');
}
#[Route('/reservation/cgv', name: 'revervation_cgv')]
#[Route('/reservation/cgv', name: 'reservation_cgv')]
public function revervationCgv()
{
return $this->render('revervation/cgv.twig');
}
#[Route('/reservation/hosting', name: 'revervation_hosting')]
#[Route('/reservation/hosting', name: 'reservation_hosting')]
public function revervationHosting()
{
return $this->render('revervation/hosting.twig');