dbmsv2/app/Views/cells/part/parttable.php
2025-09-25 08:59:07 +09:00

11 lines
502 B
PHP

<table class="index_table data table table-bordered table-hover table-striped" data-rtc-resizable-table="reisze_table">
<?php $cnt = 0 ?>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<?php foreach (['title', 'stock'] as $field): ?>
<td><?= $partCellDatas['service']->getHelper()->getFieldView($field, $entity->$field, $partCellDatas) ?></td>
<?php endforeach ?>
</tr>
<?php $cnt++ ?>
<?php endforeach ?>
</table>