<?phpnamespace App\Controller\Web;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\HttpFoundation\Response;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class DashboardController extends AbstractController{ #[Route('/', name: 'dashboard')] public function index(): Response { $this->container->get('twig')->addGlobal('pageTitle', 'Панель управления'); return new Response(''); }}