Files
nl-mall-api/routes/web.php
lq 5bd5938e5c
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
初始化项目
2025-05-19 16:54:25 +08:00

16 lines
273 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
Route::get('/r', function () {
// 获取所有路由信息
$routes = Route::getRoutes();
return view('route', [
'routes' => $routes
]);
});