dbmsv3/app/Views/cells/part/ram_stock.php
2025-10-21 13:57:13 +09:00

26 lines
797 B
PHP

<table class="table table-bordered table-hover table-striped">
<tr>
<th class="text-center">항목</th>
<th class="text-center">갯수</th>
</tr>
<?php foreach ($partCellDatas['entities'] as $entity): ?>
<?php $partCellDatas['entity'] = $entity; ?>
<tr>
<td class="text-end" nowrap>
<?=
form_label(
$entity->getTitle(),
'disk_modify',
[
"data-src" => "admin/part/ram/modify/" . $entity->getPK(),
"data-bs-toggle" => "modal",
"data-bs-target" => "#modal_action_form",
"class" => "text-primary form-label-sm",
]
);
?>
</td>
<td class="text-center" nowrap width="30%"><?= $entity->getStock() ?></td>
</tr>
<?php endforeach ?>
</table>