Files
spa-api/routes/web.php
lq ba260c2bf4
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-04-28 17:00:09 +08:00

15 lines
262 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
$framework = \App\Models\ProjectModal::with([
'frameworks',
'labels',
'technologyStacks',
])->get();
ds($framework);
return view('welcome');
});