<?php
namespace App\Controller\Mvc;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route(path: "/staff")]
class StaffController extends AbstractController
{
#[Route(path: '/', name: 'staff_index')]
public function index(): Response
{
return $this->render('pages/staff/index.html.twig', []);
}
#[Route(path: '/detail_01', name: 'staff_detail_01')]
public function detail_01(): Response
{
return $this->render('pages/staff/detail_01/index.html.twig', []);
}
#[Route(path: '/detail_02', name: 'staff_detail_02')]
public function detail_02(): Response
{
return $this->render('pages/staff/detail_02/index.html.twig', []);
}
#[Route(path: '/detail_03', name: 'staff_detail_03')]
public function detail_03(): Response
{
return $this->render('pages/staff/detail_03/index.html.twig', []);
}
#[Route(path: '/detail_04', name: 'staff_detail_04')]
public function detail_04(): Response
{
return $this->render('pages/staff/detail_04/index.html.twig', []);
}
#[Route(path: '/detail_05', name: 'staff_detail_05')]
public function detail_05(): Response
{
return $this->render('pages/staff/detail_05/index.html.twig', []);
}
}