|  | @@ -1,32 +0,0 @@
 | 
	
		
			
				|  |  | -<?php
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -namespace App\Controller;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
 | 
	
		
			
				|  |  | -use Symfony\Component\HttpFoundation\Response;
 | 
	
		
			
				|  |  | -use Symfony\Component\Routing\Attribute\Route;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -final class Admin/userController extends AbstractController
 | 
	
		
			
				|  |  | -{
 | 
	
		
			
				|  |  | -    // Lister tous les utilisateurs
 | 
	
		
			
				|  |  | -    #[Route('/admin/user', name: 'app_admin_user')]
 | 
	
		
			
				|  |  | -    public function index(): Response
 | 
	
		
			
				|  |  | -    {
 | 
	
		
			
				|  |  | -        return $this->render('admin/user/index.html.twig', [
 | 
	
		
			
				|  |  | -            'controller_name' => 'Admin/userController',
 | 
	
		
			
				|  |  | -        ]);
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    // Afficher un utilisateur
 | 
	
		
			
				|  |  | -    #[Route('/admin/user/{uuid}/show', name: 'app_admin_user_show')]
 | 
	
		
			
				|  |  | -    public function show(string $uuid): Response
 | 
	
		
			
				|  |  | -    {
 | 
	
		
			
				|  |  | -        // Logique pour récupérer l'utilisateur par UUID
 | 
	
		
			
				|  |  | -        // ...
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -        return $this->render('admin/user/show.html.twig', [
 | 
	
		
			
				|  |  | -            'uuid' => $uuid,
 | 
	
		
			
				|  |  | -            'controller_name' => 'Admin/userController',
 | 
	
		
			
				|  |  | -        ]);
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -}
 |