surat/frontend/modules/hospital/controllers/ImporterController.php

18 lines
286 B
PHP
Raw Normal View History

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