11 lines
502 B
PHP
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>
|