29 lines
606 B
PHP
29 lines
606 B
PHP
<?php
|
|
|
|
namespace plugin\admin\app\controller;
|
|
|
|
use Doctrine\Inflector\InflectorFactory;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use plugin\admin\app\common\Layui;
|
|
use plugin\admin\app\common\Util;
|
|
use plugin\admin\app\model\Role;
|
|
use plugin\admin\app\model\Rule;
|
|
use plugin\admin\app\model\Option;
|
|
use support\exception\BusinessException;
|
|
use support\Request;
|
|
use support\Response;
|
|
use Throwable;
|
|
|
|
class TestController extends Crud
|
|
{
|
|
/**
|
|
* 浏览
|
|
* @return Response
|
|
* @throws Throwable
|
|
*/
|
|
public function index(): Response
|
|
{
|
|
return raw_view('test/index');
|
|
}
|
|
}
|