<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class ModalController extends AbstractController{ #[Route('/modal', name: 'app_modal')] public function index(): Response { return $this->render('modal/index.html.twig', [ 'controller_name' => 'ModalController', ]); }}