用户相关api、jwt接入

This commit is contained in:
2025-05-05 14:20:17 +08:00
parent 147b2d3fd5
commit bd26d52fff
11 changed files with 660 additions and 27 deletions

View File

@@ -3,12 +3,12 @@
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
$framework = \App\Models\ProjectModel::with([
'frameworks',
'labels',
'technologyStacks',
])->get();
ds($framework);
//
// $framework = \App\Models\ProjectModel::with([
// 'frameworks',
// 'labels',
// 'technologyStacks',
// ])->get();
// ds($framework);
return view('welcome');
});