17 lines
831 B
PHP
17 lines
831 B
PHP
<table class="table table-bordered table-hover table-striped">
|
|
<tr>
|
|
<th class="text-center">항목</th>
|
|
<th class="text-center text-nowrap" width="13%">사용</th>
|
|
<th class="text-center text-nowrap" width="13%">가능</th>
|
|
<th class="text-center text-nowrap" width="17%">총재고</th>
|
|
</tr>
|
|
<?php foreach ($partCellDatas['entities'] as $entity): ?>
|
|
<?php $partCellDatas['entity'] = $entity; ?>
|
|
<tr>
|
|
<td class="text-end text-nowrap"><?= $partCellDatas['helper']->getListButton('ram', $entity->getTitle(), $partCellDatas) ?></td>
|
|
<td class="text-center text-nowrap"><?= $entity->getUsed() ?></td>
|
|
<td class="text-center text-nowrap"><?= $entity->getAvailable() ?></td>
|
|
<td class="text-center text-nowrap"><?= $entity->getStock() ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|