GoodsController.php
325 Bytes
<?php
/**
* Created by PhpStorm.
* User: vitaliy
* Date: 08.11.15
* Time: 22:06
*/
namespace frontend\controllers;
use Yii;
use yii\web\Controller;
class GoodsController extends Controller {
public $layout = '/internal';
public function actionIndex()
{
return $this->render('index');
}
}