template updates removing ids
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user