src/Controller/UserController.php line 33

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use App\Form\UserType;
  5. use App\Repository\UserRepository;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpFoundation\Request;
  8. use Symfony\Component\HttpFoundation\Response;
  9. use Symfony\Component\Routing\Annotation\Route;
  10. /**
  11.  * @Route("/directorio-personas")
  12.  */
  13. class UserController extends AbstractController
  14. {
  15.     /**
  16.      * @Route("/", name="app_user_index", methods={"GET"})
  17.      */
  18.     public function index(UserRepository $userRepository): Response
  19.     {
  20.         return $this->render('user/index.html.twig', [
  21.             'users' => $userRepository->findBy([],['lastName'=>'ASC']),
  22.             'categories'=>['Dirección','Intervertor Delegado','PAS','PDI']
  23.         ]);
  24.     }
  25.     /**
  26.      * @Route("/{id}", name="app_user_show", methods={"GET"})
  27.      */
  28.     public function show(User $user): Response
  29.     {
  30.         return $this->render('user/show.html.twig', [
  31.             'user' => $user,
  32.         ]);
  33.     }
  34. }