12 lines
389 B
PHP
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>
|