Files

20 lines
358 B
PHP

<div>
<table class="w-full rounded-lg">
<thead class="border-b border-white/70 rounded-t-lg">
<tr class="text-left ">
{{ $tableheader }}
</tr>
</thead>
<tbody class="">
{{ $slot }}
</tbody>
</table>
@isset($pagination)
<div class="px-6 py-4 rounded-b-lg">
{{ $pagination }}
</div>
@endisset
</div>