Files
FilamentLaravel/resources/views/components/table.blade.php
T
2025-11-18 01:40:29 +01:00

20 lines
418 B
PHP

<div class="bg-white p-4 border-jet-100 border rounded-lg shadow">
<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>