11 lines
355 B
PHP
11 lines
355 B
PHP
<table class="table table-hover">
|
|
<tbody>
|
|
<?php foreach ($viewDatas['cellDatas']['entitys'] as $entity): ?>
|
|
<tr>
|
|
<?php foreach (['title', 'created_at'] as $field): ?>
|
|
<td><?= getFieldIndex_Row_BoardHelper($field, $entity, $viewDatas) ?></td>
|
|
<?php endforeach ?>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|