view category, attribute options table

This commit is contained in:
2025-03-31 20:52:12 -07:00
parent 5a2582a333
commit fad4f575b8
2 changed files with 2 additions and 6 deletions

View File

@@ -75,16 +75,12 @@
<table>
<tr>
<th><?= __('Name') ?></th>
<th><?= __('Options') ?></th>
<th><?= __('Enabled') ?></th>
<th class="actions"><?= __('Actions') ?></th>
</tr>
<?php foreach ($productCategory->product_category_attributes as $productCategoryAttribute) : ?>
<tr>
<td><?= h($productCategoryAttribute->name) ?></td>
<td>
options
</td>
<td><?= h($productCategoryAttribute->enabled) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['controller' => 'ProductCategoryAttributes', 'action' => 'view', $productCategoryAttribute->id]) ?>