Files
sirpremiumv2/resources/views/components/primary-table.blade.php
T
2023-11-07 22:43:10 +00:00

12 lines
527 B
PHP
Executable File

<div class="overflow-y-auto max-h-full overflow-x-auto w-full mx-auto text-sm">
<table wire:loading.class="opacity-50 cursor-wait" class="w-full text-center mt-4">
<thead class="font-normal h-12 [&>tr>th]:border [&>tr>th]:border-slate-300 [&>tr>th]:pl-2 [&>tr>th]:w-1/8 bg-white py-2">
{{ $thead }}
</thead>
<tbody class="text-gray-500 select-none [&>tr>td]:border [&>tr>td]:border-slate-300 [&>tr>td]:p-2">
{{ $tbody }}
</tbody>
</table>
{{ $tlink }}
</div>