diff --git a/backend/views/layouts/menu_items.php b/backend/views/layouts/menu_items.php index 856ae2b..569a8a6 100644 --- a/backend/views/layouts/menu_items.php +++ b/backend/views/layouts/menu_items.php @@ -70,10 +70,15 @@ 'icon' => 'tags', 'items' => [ [ - 'label' => \Yii::t('core', 'Category'), + 'label' => \Yii::t('catalog', 'Categories'), 'url' => [ 'category/index' ], 'icon' => 'file-text', ], + [ + 'label' => \Yii::t('catalog', 'Products'), + 'url' => [ 'product/index' ], + 'icon' => 'gift', + ], ], ], [ diff --git a/common/config/main.php b/common/config/main.php index f96ab72..d680c09 100755 --- a/common/config/main.php +++ b/common/config/main.php @@ -51,7 +51,7 @@ 'imagemanager' => [ 'class' => 'noam148\imagemanager\components\ImageManagerGetPath', 'mediaPath' => dirname(dirname(__DIR__)) . '/storage', - 'cachePath' => 'assets/images', + 'cachePath' => '../../storage/cache', 'useFilename' => true, 'absoluteUrl' => false, ], -- libgit2 0.21.4