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

13 lines
208 B
PHP
Raw Normal View History

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