TOP-framework/application/home/controller/Index.php

27 lines
345 B
PHP

<?php
namespace app\home\controller;
use top\blocks\Json;
class Index extends Common
{
use Json;
public function index()
{
return request()->module();
}
public function hello()
{
return 'hello';
}
public function testPage()
{
// return $this->fetch();
return [];
}
}