|
|
@ -51,12 +51,59 @@ |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Préstamos --> |
|
|
|
<li> |
|
|
|
<a href="/prestamos" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos') ? 'bg-white/20' : '' }}"> |
|
|
|
<li x-data="{ open: false }" class="relative"> |
|
|
|
<button @click="open = !open" |
|
|
|
class="nav-item-hover flex items-center justify-between w-full px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos*') ? 'bg-white/20' : '' }}"> |
|
|
|
<div class="flex items-center space-x-3"> |
|
|
|
<i class="fas fa-book text-white/80"></i> |
|
|
|
<span class="font-light">Préstamos</span> |
|
|
|
</div> |
|
|
|
<i class="fas fa-chevron-down text-sm transition-transform duration-200" |
|
|
|
:class="{ 'transform rotate-180': open }"></i> |
|
|
|
</button> |
|
|
|
|
|
|
|
<!-- Submenú de Préstamos --> |
|
|
|
<ul x-show="open" |
|
|
|
x-transition:enter="transition ease-out duration-200" |
|
|
|
x-transition:enter-start="opacity-0 transform -translate-y-2" |
|
|
|
x-transition:enter-end="opacity-100 transform translate-y-0" |
|
|
|
x-transition:leave="transition ease-in duration-150" |
|
|
|
x-transition:leave-start="opacity-100 transform translate-y-0" |
|
|
|
x-transition:leave-end="opacity-0 transform -translate-y-2" |
|
|
|
class="pl-4 mt-2 space-y-1 text-sm"> |
|
|
|
|
|
|
|
<li> |
|
|
|
<a href="/prestamos/nuevo" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos/nuevo') ? 'bg-white/20' : '' }}"> |
|
|
|
<i class="fas fa-plus text-white/80"></i> |
|
|
|
<span class="font-light">Nuevo Préstamo</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/prestamos/pendientes" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos/pendientes') ? 'bg-white/20' : '' }}"> |
|
|
|
<i class="fas fa-clock text-white/80"></i> |
|
|
|
<span class="font-light">Préstamos Pendientes</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/prestamos/rechazados" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos/rechazados') ? 'bg-white/20' : '' }}"> |
|
|
|
<i class="fas fa-times text-white/80"></i> |
|
|
|
<span class="font-light">Préstamos Rechazados</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/prestamos/aceptados" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos/aceptados') ? 'bg-white/20' : '' }}"> |
|
|
|
<i class="fas fa-check text-white/80"></i> |
|
|
|
<span class="font-light">Préstamos Aceptados</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="/prestamos/historial" class="nav-item-hover flex items-center space-x-3 px-4 py-3 rounded-lg hover:bg-white/10 backdrop-blur-sm {{ request()->is('prestamos/historial') ? 'bg-white/20' : '' }}"> |
|
|
|
<i class="fas fa-history text-white/80"></i> |
|
|
|
<span class="font-light">Historial</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</li> |
|
|
|
|
|
|
|
<!-- Usuarios --> |
|
|
|
<li> |
|
|
|