<?phpnamespace App\Controller;use App\Entity\Employee;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{ /** * @Route("/", name="app_index", methods={"GET"}) */ public function index() { return $this->redirectToRoute('app_dashboard_profit_analysis', [], Response::HTTP_SEE_OTHER); }}