```
♻️ refactor(routes): Corrige les noms des routes pour 'reservation' au lieu de 'revervation'.
```
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user