<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ArticleController extends AbstractController
{
#[Route('/article/le-centre-esthetique-maison-eiffel-recommande-4-soins-pour-avoir-une-peau-lumineuse-en-plein-hiver', name: 'article')]
public function index(): Response
{
return $this->render('article/index.html.twig', [
'controller_name' => 'ArticleController',
]);
}
#[Route('/article/les-3-soins-stars-de-la-parisienne-pour-bien-commencer-la-saison', name: 'article1')]
public function article1(): Response
{
return $this->render('article/index2.html.twig', [
'controller_name' => 'ArticleController',
]);
}
#[Route('/article/lasers-peeling-radiofrequence-des-traitements-de-reference-pour-une-peau-parfaite', name: 'article2')]
public function article2(): Response
{
return $this->render('article/index3.html.twig', [
'controller_name' => 'ArticleController',
]);
}
#[Route('/article/morpheus-une-avancee-spectaculaire-dans-le-domaine-de-la-beaute-a-tester-a-la-maison-eiffel', name: 'article3')]
public function article3(): Response
{
return $this->render('article/index4.html.twig', [
'controller_name' => 'ArticleController'
]);
}
}