demo-pathology/frontend/modules/em/controllers/DefaultController.php

13 lines
193 B
PHP
Raw Normal View History

2025-12-26 03:03:19 +00:00
<?php
namespace frontend\modules\em\controllers;
class DefaultController extends \yii\web\Controller
{
public function actionIndex()
{
return $this->render('index');
}
}