7 lines
319 B
PHP
7 lines
319 B
PHP
<?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 endforeach ?>
|