src/Controller/PagesController.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\JsonResponse;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\HttpFoundation\Request;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. use SendGrid\Mail\Mail;
  9. class PagesController extends AbstractController
  10. {
  11.     #[Route(path: [
  12.         'en_US' => '/',
  13.         'es_CO' => '/inicio',
  14.         'de_DE' => '/startseite',
  15.     ], name'app_pages')]
  16.     public function index(): Response
  17.     {
  18.         return $this->render('pages/index.html.twig', [
  19.             
  20.         ]);
  21.     }
  22. }