dbmsv4/app/Views/cells/mylog/dashboard.php
2025-11-20 17:27:03 +09:00

16 lines
776 B
PHP

<table class="table table-bordered table-hover table-striped">
<tr>
<th class="text-center">작업일</th>
<th class="text-center">작업내역</th>
<th class="text-center">작업자</th>
</tr>
<?php foreach ($myLogCellDatas['entities'] as $entity): ?>
<?php $myLogCellDatas['entity'] = $entity; ?>
<tr>
<td class="text-center" nowrap><?= $myLogCellDatas['helper']->getFieldView('created_at', $entity->created_at, $myLogCellDatas) ?></td>
<td class="text-start"><?= $myLogCellDatas['helper']->getFieldView('title', $entity->title, $myLogCellDatas) ?></td>
<td class="text-center"><?= $myLogCellDatas['helper']->getFieldView('user_uid', $entity->user_uid, $myLogCellDatas) ?></td>
</td>
</tr>
<?php endforeach ?>
</table>