<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ServicesController extends AbstractController
{
#[Route('/parodontologie', name: 'app_parodontologie')]
public function parodontologie(): Response
{
return $this->render('services/parodontologie.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/service', name: 'app_service')]
public function service(): Response
{
return $this->render('services/service.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/urgencedentaire', name: 'app_urgencedentaire')]
public function urgencedentaire(): Response
{
return $this->render('services/urgencedentaire.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/implantologie', name: 'app_implantologie')]
public function implantologie(): Response
{
return $this->render('services/implantologie.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/prothesedentaire', name: 'app_prothesedentaire')]
public function prothesedentaire (): Response
{
return $this->render('services/prothesedentaire.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/endodontie', name: 'app_endodontie')]
public function endodontie (): Response
{
return $this->render('services/endodontie.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/dentisterieesthetique', name: 'app_dentisterieesthetique')]
public function dentisterieesthetique (): Response
{
return $this->render('services/dentisterieesthetique.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/pedodontie', name: 'app_pedodontie')]
public function pedodontie (): Response
{
return $this->render('services/pedodontie.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/chirurgiedentaire', name: 'app_chirurgiedentaire')]
public function chirurgiedentaire (): Response
{
return $this->render('services/chirurgiedentaire.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/orthodontie', name: 'app_orthodontie')]
public function orthodontie (): Response
{
return $this->render('services/orthodontie.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/laser', name: 'app_laser')]
public function laser (): Response
{
return $this->render('services/laser.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/numerique', name: 'app_numerique')]
public function numerique (): Response
{
return $this->render('services/numerique.html.twig', [
'controller_name' => 'ServicesController',
]);
}
#[Route('/pathologies', name: 'app_pathologies')]
public function pathologies (): Response
{
return $this->render('services/pathologies.html.twig', [
'controller_name' => 'ServicesController',
]);
}
}