"...calendrier.git" did not exist on "be036e4b67d9a4330a189a59764f3263fdfdbfe9"
Newer
Older
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class CalendarController extends AbstractController
{
#[Route('/calendar', name: 'calendar')]
public function index(): Response
{
return $this->render('calendar/index.html.twig', [
'controller_name' => 'CalendarController',
]);
}
}