阶段更新

This commit is contained in:
2023-03-09 11:54:13 +08:00
parent e78454540f
commit 3cd75b1d6e
47 changed files with 4844 additions and 1646 deletions

12
app/Admin/Routes/test.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\Route;
Route::group([
'prefix' => 'test',
], function (Router $router) {
$router->get('', 'TestController@index');
$router->get('truncate', 'TestController@truncate');
$router->get('leady', 'LeadyController@index');
});