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

12 lines
389 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['rows'] as $row): ?>
<tr>
<td class="text-end" nowrap><?= $row->title ?></td>
<td class="text-center" nowrap width="30%"><?= $row->cnt ?></td>
</tr>
<?php endforeach ?>
</table>