product attributes increment was missing on form, view product attributes on view product page
This commit is contained in:
@@ -53,7 +53,12 @@ class ProductsController extends AppController
|
||||
*/
|
||||
public function view($id = null)
|
||||
{
|
||||
$product = $this->getTable()->get($id, contain: ['ProductCategories']);
|
||||
$product = $this->getTable()->get($id, contain: [
|
||||
'ProductCategories',
|
||||
'ProductAttributes',
|
||||
'ProductAttributes.ProductCategoryAttributes',
|
||||
'ProductAttributes.ProductCategoryAttributeOptions',
|
||||
]);
|
||||
$this->set(compact('product'));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user