15 lines
229 B
PHP
15 lines
229 B
PHP
<?php
|
|
|
|
use App\Service\UtilsService;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
/**
|
|
* 自动注册路由
|
|
*/
|
|
UtilsService::class::getInstance()->autoRouteRegister([
|
|
]);
|