1234567891011121314151617181920212223242526 |
- <?php
- namespace app\portal\controller;
- use cmf\controller\HomeBaseController;
- class IndexController extends HomeBaseController{
-
- public function index(){
- return $this->fetch(":index");
- }
- public function scanqr() {
- return $this->fetch(":scanqr");
- }
- }
|