src/Base/Controller/Panel/HomeController.php line 17
<?php/*** Created by PhpStorm.* User: Shokhaa* Date: 08/11/22* Time: 20:18*/namespace App\Base\Controller\Panel;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{#[Route('/', name: 'home')]public function index(){return $this->render('index.twig');}}