<?php
namespace App\Controller;
use App\Entity\Employee;
use App\Entity\EmployeeImport;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Exception;
use App\Service\EmployeeService;
/**
* Class IndexController
*/
class IndexController extends AbstractController {
/**
* @Route("/", name="homepage")
*/
public function index(): Response {
return $this->render('index/index.html.twig', []);
}
}