datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
589 B
30 lines
589 B
{{--
|
|
args: $rows, $cols
|
|
--}}
|
|
|
|
@php
|
|
/** @var object[] $columns */
|
|
/** @var \App\Tables\Changeset[] $changeset */
|
|
/** @var \App\Models\Row[] $rows */
|
|
@endphp
|
|
|
|
<table class="table table-hover table-sm">
|
|
<thead>
|
|
<tr>
|
|
{{--<th>#</th>--}}
|
|
@foreach($columns as $col)
|
|
<th title="{{$col->name}}">{{ $col->title }}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($rows as $row)
|
|
<tr>
|
|
{{--<td>{{$row->_id}}</td>--}}
|
|
@foreach($columns as $col)
|
|
<td>{{ $row->{$col->name} }}</td>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|