You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					109 lines
				
				5.0 KiB
			
		
		
			
		
	
	
					109 lines
				
				5.0 KiB
			| 
								 
											8 months ago
										 
									 | 
							
								@extends('layouts.dashboard')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@section('content')
							 | 
						||
| 
								 | 
							
								<div class="container mx-auto px-4 py-6">
							 | 
						||
| 
								 | 
							
								    <!-- Encabezado -->
							 | 
						||
| 
								 | 
							
								    @if(session('success'))
							 | 
						||
| 
								 | 
							
								        <div class="bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded relative mb-4" role="alert">
							 | 
						||
| 
								 | 
							
								            <span class="block sm:inline">{{ session('success') }}</span>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @if(session('error'))
							 | 
						||
| 
								 | 
							
								        <div class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative mb-4" role="alert">
							 | 
						||
| 
								 | 
							
								            <span class="block sm:inline">{{ session('error') }}</span>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <div class="bg-white rounded-lg shadow-lg">
							 | 
						||
| 
								 | 
							
								        <div class="p-4 border-b border-gray-200 flex justify-between items-center">
							 | 
						||
| 
								 | 
							
								            <h2 class="text-2xl font-bold">Gestión de Usuarios</h2>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- Barra de búsqueda -->
							 | 
						||
| 
								 | 
							
								        <div class="p-4 border-b border-gray-200 bg-gray-50">
							 | 
						||
| 
								 | 
							
								            <form action="{{ route('usuarios') }}" method="GET" class="flex gap-2">
							 | 
						||
| 
								 | 
							
								                <div class="relative w-full sm:w-64">
							 | 
						||
| 
								 | 
							
								                    <input type="text"
							 | 
						||
| 
								 | 
							
								                           name="busqueda"
							 | 
						||
| 
								 | 
							
								                           placeholder="Buscar usuario..."
							 | 
						||
| 
								 | 
							
								                           value="{{ request('busqueda') }}"
							 | 
						||
| 
								 | 
							
								                           class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
							 | 
						||
| 
								 | 
							
								                    <div class="absolute left-3 top-2.5 text-gray-400">
							 | 
						||
| 
								 | 
							
								                        <i class="fas fa-search"></i>
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								                <button type="submit" class="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600">
							 | 
						||
| 
								 | 
							
								                    Buscar
							 | 
						||
| 
								 | 
							
								                </button>
							 | 
						||
| 
								 | 
							
								                @if(request('busqueda'))
							 | 
						||
| 
								 | 
							
								                    <a href="{{ route('usuarios') }}" class="px-4 py-2 bg-gray-500 text-white rounded-lg hover:bg-gray-600">
							 | 
						||
| 
								 | 
							
								                        Limpiar
							 | 
						||
| 
								 | 
							
								                    </a>
							 | 
						||
| 
								 | 
							
								                @endif
							 | 
						||
| 
								 | 
							
								            </form>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <div class="overflow-x-auto">
							 | 
						||
| 
								 | 
							
								            <table class="min-w-full divide-y divide-gray-200">
							 | 
						||
| 
								 | 
							
								                <thead class="bg-gray-50">
							 | 
						||
| 
								 | 
							
								                    <tr>
							 | 
						||
| 
								 | 
							
								                        <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ID</th>
							 | 
						||
| 
								 | 
							
								                        <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Nombre</th>
							 | 
						||
| 
								 | 
							
								                        <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Email</th>
							 | 
						||
| 
								 | 
							
								                        <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Acciones</th>
							 | 
						||
| 
								 | 
							
								                    </tr>
							 | 
						||
| 
								 | 
							
								                </thead>
							 | 
						||
| 
								 | 
							
								                <tbody class="bg-white divide-y divide-gray-200">
							 | 
						||
| 
								 | 
							
								                    @if($usuarios->isEmpty())
							 | 
						||
| 
								 | 
							
								                        <tr>
							 | 
						||
| 
								 | 
							
								                            <td colspan="4" class="px-6 py-4 text-center text-gray-500">No hay usuarios registrados.</td>
							 | 
						||
| 
								 | 
							
								                        </tr>
							 | 
						||
| 
								 | 
							
								                    @else
							 | 
						||
| 
								 | 
							
								                        @foreach($usuarios as $usuario)
							 | 
						||
| 
								 | 
							
								                        <tr class="hover:bg-gray-50">
							 | 
						||
| 
								 | 
							
								                            <td class="px-6 py-4 whitespace-nowrap">{{ $usuario->id }}</td>
							 | 
						||
| 
								 | 
							
								                            <td class="px-6 py-4 whitespace-nowrap">{{ $usuario->name }}</td>
							 | 
						||
| 
								 | 
							
								                            <td class="px-6 py-4 whitespace-nowrap">{{ $usuario->email }}</td>
							 | 
						||
| 
								 | 
							
								                            <td class="px-6 py-4 whitespace-nowrap">
							 | 
						||
| 
								 | 
							
								                                <div class="flex gap-2">
							 | 
						||
| 
								 | 
							
								                                    <div class="flex gap-2">
							 | 
						||
| 
								 | 
							
								                                        <form action="{{ route('usuarios.destroy', $usuario->id) }}" method="POST" class="inline" onsubmit="return false;">
							 | 
						||
| 
								 | 
							
								                                            @csrf
							 | 
						||
| 
								 | 
							
								                                            @method('DELETE')
							 | 
						||
| 
								 | 
							
								                                            <button type="button" onclick="confirmarEliminacion(this)" class="text-red-600 hover:text-red-900">
							 | 
						||
| 
								 | 
							
								                                                <i class="fas fa-trash"></i> <!-- Icono de eliminación -->
							 | 
						||
| 
								 | 
							
								                                            </button>
							 | 
						||
| 
								 | 
							
								                                        </form>
							 | 
						||
| 
								 | 
							
								                                    </div>
							 | 
						||
| 
								 | 
							
								                            </td>
							 | 
						||
| 
								 | 
							
								                        </tr>
							 | 
						||
| 
								 | 
							
								                        @endforeach
							 | 
						||
| 
								 | 
							
								                    @endif
							 | 
						||
| 
								 | 
							
								                </tbody>
							 | 
						||
| 
								 | 
							
								            </table>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								</div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<script>
							 | 
						||
| 
								 | 
							
								function confirmarEliminacion(button) {
							 | 
						||
| 
								 | 
							
								    Swal.fire({
							 | 
						||
| 
								 | 
							
								        title: '¿Estás seguro?',
							 | 
						||
| 
								 | 
							
								        text: "Esta acción no se puede deshacer",
							 | 
						||
| 
								 | 
							
								        icon: 'warning',
							 | 
						||
| 
								 | 
							
								        showCancelButton: true,
							 | 
						||
| 
								 | 
							
								        confirmButtonColor: '#3085d6',
							 | 
						||
| 
								 | 
							
								        cancelButtonColor: '#d33',
							 | 
						||
| 
								 | 
							
								        confirmButtonText: 'Sí, eliminar',
							 | 
						||
| 
								 | 
							
								        cancelButtonText: 'Cancelar'
							 | 
						||
| 
								 | 
							
								    }).then((result) => {
							 | 
						||
| 
								 | 
							
								        if (result.isConfirmed) {
							 | 
						||
| 
								 | 
							
								            button.closest('form').onsubmit = null;
							 | 
						||
| 
								 | 
							
								            button.closest('form').submit();
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    });
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								</script>
							 | 
						||
| 
								 | 
							
								@endsection
							 |