Files
citrus-cms/resources/views/components/table/bootstrap-table.blade.php
T
2026-04-28 21:15:09 +03:00

13 lines
255 B
PHP

<table
data-toggle="table"
data-url="data1.json">
<thead>
<tr>
<?php foreach($columnsList AS $column) { ?>
<th data-field="{{$column['name']}}">{{e2($column['name'])}}</th>
<?php } ?>
</tr>
</thead>
</table>