surat/frontend/modules/fish/controllers/DefaultController.php

14 lines
210 B
PHP
Raw Normal View History

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