SiteController.php
515 Bytes
<?php
namespace frontend\controllers;
use common\modules\product\models\Category;
use common\modules\product\models\CategorySearch;
use common\modules\product\models\Product;
use common\modules\product\models\ProductVariant;
use Yii;
use yii\web\Controller;
use common\models\Page;
use common\models\News;
use common\models\Catalog;
use common\models\Products;
class SiteController extends Controller
{
public function actionIndex()
{
return $this->render('index', [
]);
}
}