vhost/app/Views/front/board/cell/information.php
2024-05-07 13:20:45 +09:00

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>