Files
spa-api/routes/api.php

16 lines
311 B
PHP
Raw Normal View History

2025-05-05 08:15:50 +08:00
<?php
2025-05-05 09:44:50 +08:00
use App\Service\common\UtilsService;
2025-05-05 08:15:50 +08:00
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
/**
* 自动注册路由
*/
UtilsService::class::getInstance()->autoRouteRegister([
2025-05-05 09:44:50 +08:00
'' => \App\Http\Controllers\LoginController::class, // 登录控制器
2025-05-05 08:15:50 +08:00
]);