ProductHelper.php
409 Bytes
<?php
namespace common\modules\product\helpers;
use common\modules\product\models\Brand;
use common\modules\product\models\Category;
use yii\base\Object;
class ProductHelper extends Object {
public static function getCategories() {
return Category::find()->with('categoryName')->getTree();
}
public static function getBrands() {
return Brand::find()->with('brandName');
}
}