krabi/frontend/modules/flow/controllers/DefaultController.php

14 lines
210 B
PHP
Raw Normal View History

2025-07-17 10:28:32 +00:00
<?php
namespace frontend\modules\flow\controllers;
use yii\web\Controller;
class DefaultController extends Controller
{
public function actionIndex()
{
return $this->render('index');
}
}