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

19 lines
439 B
PHP

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