ProductController.php
381 Bytes
<?php
namespace frontend\controllers;
use yii\web\Controller;
/**
* Products controller
*/
class ProductController extends Controller
{
/**
* Displays product list.
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}