This commit is contained in:
Felipe
2023-10-07 11:28:31 -05:00
parent 8e19bd129e
commit 87124fdf46
7 changed files with 89 additions and 29 deletions
@@ -5,6 +5,7 @@
<td class="pl-[2rem]">{{ $cuenta->servicio->nombre ?? '' }}</td>
<td class="pl-[2rem] text-xs sm:text-sm ">{{ $cuenta->correo?? '' }}</td>
<td class="pl-[2rem] text-xs sm:text-sm ">{{ $cuenta->password ?? '' }}</td>
<td class="pl-[2rem] text-xs hidden md:inline-table">{{ carbon\Carbon::parse($cuenta->inicio)->format('d M Y') ?? '' }} - {{ carbon\Carbon::parse($cuenta->vencimiento)->format('d M Y') ?? '' }}</td>
@@ -0,0 +1,11 @@
<div class="overflow-y-auto max-h-full">
<table wire:loading.class="opacity-50 cursor-wait" class="w-full sm-w-[20rem] text-center mt-4 border-separate border-spacing-y-2">
<thead class="font-normal bg-[#000029] text-white h-9">
{{ $thead }}
</thead>
<tbody class="text-gray-500 select-none">
{{ $tbody }}
</tbody>
</table>
{{ $tlink }}
</div>