Add (tint)

This commit is contained in:
2023-11-21 01:21:30 +08:00
parent 7166eb610c
commit e4bab8dcec
48 changed files with 229 additions and 58 deletions

View File

@@ -29,6 +29,9 @@ public function boot(): void
});
$this->routes(function () {
Route::middleware('web')
->prefix('tests')
->group(base_path('routes/tests.php'));
Route::middleware('api')
->prefix('api')
->group(base_path('routes/api.php'));
@@ -36,9 +39,6 @@ public function boot(): void
Route::middleware('web')
->group(base_path('routes/web.php'));
Route::middleware('web')
->prefix('tests')
->group(base_path('routes/tests.php'));
});
}
}