<?phpnamespace App\Controller\Mvc;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;#[Route(path: "/company")]class CompanyController extends AbstractController{ #[Route(path: '/', name: 'company_index')] public function index(): Response { return $this->render('pages/company/index.html.twig', []); }}