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.
24 lines
451 B
24 lines
451 B
6 years ago
|
{{--
|
||
|
args: $rows, $cols
|
||
|
--}}
|
||
|
|
||
|
<table class="table table-hover table-sm">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
@foreach($columns as $col)
|
||
|
<th>{{ $col->title }}</th>
|
||
|
@endforeach
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
@foreach($rows as $row)
|
||
|
<tr>
|
||
|
@php($rdata = json_decode($row['data'], true))
|
||
|
@foreach($columns as $col)
|
||
|
<td data-id="{{ $row->id }}">{{ $rdata[$col->name] }}</td>
|
||
|
@endforeach
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</tbody>
|
||
|
</table>
|