Finished RelationService

This commit is contained in:
Yann ASTIER 2024-10-24 23:57:42 +02:00
parent 6dd6550292
commit 3b353cde0b
2 changed files with 19 additions and 0 deletions

View File

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

View File

@ -0,0 +1 @@
<?php