Files
FilamentLaravel/resources/views/components/table.blade.php
T

20 lines
357 B
PHP

<div>
<table class="w-full rounded-lg">
<thead class="border-b border-jet-200 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>