This commit is contained in:
Lwei
2026-06-22 11:23:05 +08:00
commit 234d126ff6
998 changed files with 355523 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace app\controller;
use support\Request;
/**
* 首页控制器
* @Author: Lwei<1750433663@qq.com>
* @Date: 2026-04-30
* @Time: 15:05:39
*/
class IndexController
{
//全局总入口
public function index(Request $request)
{
// return view('index/view', ['name' => 'webman']);
}
}