This commit is contained in:
Dai 2024-07-23 08:55:15 +08:00
parent 68219ae139
commit 185ed1ab00

View File

@ -20,11 +20,9 @@ Route::any('/', [\plugin\admin\app\controller\IndexController::class, 'index']);
Route::any('/h5/student', function (){ Route::any('/h5/student', function (){
return view('student/index'); return view('student/index');
}); });
Route::any('/h5/teacher', function (){
Route::any('/h5/teacher', function (){ Route::any('/h5/teacher', function (){
return view('teacher/index'); return view('teacher/index');
}); });
});