29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<div class="h-full w-full md:my-2">
|
|
<div class="bg-[#f5f5f5] m-auto p-2 md:p-5 w-auto x-auto grid grid-cols-1 lg:grid-cols-1text-center rounded-xl py-4 px-2 ms:px-8 xl:mx-10 mb-8 ">
|
|
|
|
<x-ver-entrada />
|
|
|
|
<x-primary-table>
|
|
<x-slot name="thead">
|
|
<tr class="text-left">
|
|
<th class="rounded-l-lg font-normal w-1/8 pl-2 sm:w-1/8">Usuario</th>
|
|
<th class="font-normal w-1/8 sm:w-1/8 pl-2">Detalle</th>
|
|
<th class="rounded-r-lg w-1/8 font-normal sm:w-1/8">Fecha</th>
|
|
</tr>
|
|
</x-slot>
|
|
<x-slot name="tbody">
|
|
@foreach ($logs as $log)
|
|
<tr class="border-gray-200 text-left w-full pl-4 hover:bg-gray-200 hover:ring-gray-500">
|
|
<td class="pl-2">{{ $log->user->name ?? '' }}</td>
|
|
<td class="pl-2">{{ $log->detalle ?? '' }}</td>
|
|
<td class="pl-2">{{ $log->created_at->format('d M Y h:m a') ?? '' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</x-slot>
|
|
<x-slot name="tlink">
|
|
{{ $logs->links() }}
|
|
</x-slot>
|
|
</x-primary-table>
|
|
</div>
|
|
</div>
|