HegreLand/src/Controller/RepresentationController.php

19 lines
505 B
PHP

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