FleetCart/Modules/Admin/Resources/views/components/table.blade.php

12 lines
308 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<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>