src/Controller/Mvc/BrandController.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Mvc;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. #[Route(path"/brand")]
  7. class BrandController extends AbstractController
  8. {
  9.     #[Route(path'/'name'brand_index')]
  10.     public function index(): Response
  11.     {
  12.         return $this->render('pages/brand/index.html.twig', []);
  13.     }
  14.       // kaisen_fujimaru
  15.   #[Route(path'/kaisen_fujimaru'name'kaisen_fujimaru_index')]
  16.   public function kaisen_fujimaru_index(): Response
  17.   {
  18.       return $this->render('pages/brand/kaisen_fujimaru/index.html.twig', []);
  19.   }
  20.         // edo_fujimaru
  21.   #[Route(path'/edo_fujimaru'name'edo_fujimaru_index')]
  22.   public function edo_fujimaru_index(): Response
  23.   {
  24.       return $this->render('pages/brand/edo_fujimaru/index.html.twig', []);
  25.   }
  26.           // yakiniku_kai
  27.   #[Route(path'/yakiniku_kai'name'yakiniku_kai_index')]
  28.   public function yakiniku_kai_index(): Response
  29.   {
  30.       return $this->render('pages/brand/yakiniku_kai/index.html.twig', []);
  31.   }
  32.             // yakitori_kai
  33.   #[Route(path'/yakitori_kai'name'yakitori_kai_index')]
  34.   public function yakitori_kai_index(): Response
  35.   {
  36.       return $this->render('pages/brand/yakitori_kai/index.html.twig', []);
  37.   }
  38.               // fujikitchen
  39.   #[Route(path'/fujikitchen'name'fujikitchen_index')]
  40.   public function fujikitchen_index(): Response
  41.   {
  42.       return $this->render('pages/brand/fujikitchen/index.html.twig', []);
  43.   }
  44.                 // farm
  45.   #[Route(path'/farm'name'farm_index')]
  46.   public function farm_index(): Response
  47.   {
  48.       return $this->render('pages/brand/farm/index.html.twig', []);
  49.   }
  50.                   // curry
  51.   #[Route(path'/curry'name'curry_index')]
  52.   public function curry_index(): Response
  53.   {
  54.       return $this->render('pages/brand/curry/index.html.twig', []);
  55.   }
  56.                     // fujimaru_suisan
  57.   #[Route(path'/fujimaru_suisan'name'fujimaru_suisan_index')]
  58.   public function fujimaru_suisan_index(): Response
  59.   {
  60.       return $this->render('pages/brand/fujimaru_suisan/index.html.twig', []);
  61.   }
  62.                       // online_shop
  63.   #[Route(path'/online_shop'name'online_shop_index')]
  64.   public function online_shop_index(): Response
  65.   {
  66.       return $this->render('pages/brand/online_shop/index.html.twig', []);
  67.   }
  68. }