- <?php
- namespace 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', []);
-     }
-     #[Route(path: '/outline', name: 'company_outline')]
-     public function outline(): Response
-     {
-         return $this->render('pages/company/outline.html.twig', []);
-     }
- }