|
|
@ -26,18 +26,77 @@ |
|
|
|
<span>Inicio</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Vehículos --> |
|
|
|
<li> |
|
|
|
<a href="/prestamos" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-book"></i> |
|
|
|
<span>Préstamos</span> |
|
|
|
<a href="/marcas" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-car"></i> |
|
|
|
<span>Marcas</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/usuarios" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<a href="/tipos" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-truck-pickup"></i> |
|
|
|
<span>Tipos de Vehículo</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Licencias --> |
|
|
|
<li> |
|
|
|
<a href="/licencias" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-id-card"></i> |
|
|
|
<span>Tipos de Licencia</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Capacidad --> |
|
|
|
<li> |
|
|
|
<a href="/capacidad" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-users"></i> |
|
|
|
<span>Usuarios</span> |
|
|
|
<span>Capacidad</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Puestos --> |
|
|
|
<li x-data="{ open: false }" class="relative"> |
|
|
|
<button @click="open = !open" class="flex items-center justify-between w-full px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<div class="flex items-center space-x-2"> |
|
|
|
<i class="fas fa-user-tie"></i> |
|
|
|
<span>Puestos</span> |
|
|
|
</div> |
|
|
|
<i class="fas fa-chevron-down text-sm" :class="{ 'transform rotate-180': open }"></i> |
|
|
|
</button> |
|
|
|
<ul x-show="open" class="pl-4 mt-2 space-y-1 text-sm"> |
|
|
|
<li> |
|
|
|
<a href="/puestos/docentes" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-chalkboard-teacher"></i> |
|
|
|
<span>Docentes</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/puestos/choferes" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-steering-wheel"></i> |
|
|
|
<span>Choferes</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/puestos/admin" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-user-shield"></i> |
|
|
|
<span>Administradores</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Estatus --> |
|
|
|
<li> |
|
|
|
<a href="/estatus" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-toggle-on"></i> |
|
|
|
<span>Estatus</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Configuración --> |
|
|
|
<li> |
|
|
|
<a href="/configuracion" class="flex items-center space-x-2 px-4 py-2 rounded hover:bg-blue-700"> |
|
|
|
<i class="fas fa-cog"></i> |
|
|
|