template updates removing ids

This commit is contained in:
2025-03-27 23:05:06 -07:00
parent d17302dcc4
commit ad4c16bb9e
5 changed files with 1 additions and 39 deletions

View File

@@ -26,10 +26,6 @@
<th><?= __('Catalog Description') ?></th>
<td><?= h($productCatalog->catalog_description) ?></td>
</tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $productCatalog->id; ?></td>
</tr>
<tr>
<th><?= __('Enabled') ?></th>
<td><?= $productCatalog->enabled ? __('Yes') : __('No'); ?></td>
@@ -41,8 +37,6 @@
<div class="table-responsive">
<table>
<tr>
<th><?= __('Id') ?></th>
<th><?= __('Product Catalog Id') ?></th>
<th><?= __('Name') ?></th>
<th><?= __('Category Description') ?></th>
<th><?= __('Parent Id') ?></th>
@@ -51,8 +45,6 @@
</tr>
<?php foreach ($productCatalog->product_categories as $productCategories) : ?>
<tr>
<td><?= h($productCategories->id) ?></td>
<td><?= h($productCategories->product_catalog_id) ?></td>
<td><?= h($productCategories->name) ?></td>
<td><?= h($productCategories->category_description) ?></td>
<td><?= h($productCategories->parent_id) ?></td>