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

14 lines
210 B
PHP
Raw Normal View History

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