guild/backend/modules/employee/controllers/DefaultController.php
2021-11-16 13:14:28 +03:00

21 lines
352 B
PHP

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