dbmsv3/app/Views/cells/part/disk_stock.php
2025-10-15 17:20:23 +09:00

15 lines
512 B
PHP

<table class="table table-bordered table-hover table-striped">
<tr>
<th>항목</th>
<th>갯수</th>
<th>포맷</th>
</tr>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<tr>
<?php foreach (['title', 'stock', 'format'] as $field): ?>
<td nowrap><?= $partCellDatas['service']->getHelper()->getFieldView($field, $entity->$field, $partCellDatas) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</table>