FleetCart/Modules/Admin/Resources/views/components/table.blade.php
2023-06-11 13:14:03 +01:00

12 lines
308 B
PHP

<div class="table-responsive">
<table class="table table-striped table-hover {{ $class ?? '' }}" id="{{ $id ?? '' }}">
<thead>{{ $thead }}</thead>
<tbody>{{ $slot }}</tbody>
@isset($tfoot)
<tfoot>{{ $tfoot }}</tfoot>
@endisset
</table>
</div>