remove ids from indexes and on attributes view

This commit is contained in:
2025-03-27 22:58:13 -07:00
parent 4e61189d03
commit 787f318032
5 changed files with 0 additions and 10 deletions

View File

@@ -11,7 +11,6 @@
<table>
<thead>
<tr>
<th><?= $this->Paginator->sort('id') ?></th>
<th><?= $this->Paginator->sort('name') ?></th>
<th><?= $this->Paginator->sort('product_category_id') ?></th>
<th><?= $this->Paginator->sort('product_type_id') ?></th>
@@ -21,7 +20,6 @@
<tbody>
<?php foreach ($products as $product): ?>
<tr>
<td><?= $this->Number->format($product->id) ?></td>
<td><?= h($product->name) ?></td>
<td><?= $product->hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?></td>
<td><?= $product->product_type_id->name ?></td>