<?php
namespace App\Controller\Mvc;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route(path: "/brand")]
class BrandController extends AbstractController
{
#[Route(path: '/', name: 'brand_index')]
public function index(): Response
{
return $this->render('pages/brand/index.html.twig', []);
}
// kaisen_fujimaru
#[Route(path: '/kaisen_fujimaru', name: 'kaisen_fujimaru_index')]
public function kaisen_fujimaru_index(): Response
{
return $this->render('pages/brand/kaisen_fujimaru/index.html.twig', []);
}
// edo_fujimaru
#[Route(path: '/edo_fujimaru', name: 'edo_fujimaru_index')]
public function edo_fujimaru_index(): Response
{
return $this->render('pages/brand/edo_fujimaru/index.html.twig', []);
}
// yakiniku_kai
#[Route(path: '/yakiniku_kai', name: 'yakiniku_kai_index')]
public function yakiniku_kai_index(): Response
{
return $this->render('pages/brand/yakiniku_kai/index.html.twig', []);
}
// yakitori_kai
#[Route(path: '/yakitori_kai', name: 'yakitori_kai_index')]
public function yakitori_kai_index(): Response
{
return $this->render('pages/brand/yakitori_kai/index.html.twig', []);
}
// fujikitchen
#[Route(path: '/fujikitchen', name: 'fujikitchen_index')]
public function fujikitchen_index(): Response
{
return $this->render('pages/brand/fujikitchen/index.html.twig', []);
}
// farm
#[Route(path: '/farm', name: 'farm_index')]
public function farm_index(): Response
{
return $this->render('pages/brand/farm/index.html.twig', []);
}
// curry
#[Route(path: '/curry', name: 'curry_index')]
public function curry_index(): Response
{
return $this->render('pages/brand/curry/index.html.twig', []);
}
// fujimaru_suisan
#[Route(path: '/fujimaru_suisan', name: 'fujimaru_suisan_index')]
public function fujimaru_suisan_index(): Response
{
return $this->render('pages/brand/fujimaru_suisan/index.html.twig', []);
}
// online_shop
#[Route(path: '/online_shop', name: 'online_shop_index')]
public function online_shop_index(): Response
{
return $this->render('pages/brand/online_shop/index.html.twig', []);
}
}