This commit is contained in:
akosse
2020-02-05 12:08:01 +03:00
parent dbaeeb3c5a
commit 3da2dd1543
34 changed files with 1173 additions and 3 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace backend\modules\reports\controllers;
use yii\web\Controller;
/**
* Default controller for the `reports` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}