模型关联数据修正
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

This commit is contained in:
2025-04-28 17:00:09 +08:00
parent 44c1e18745
commit ba260c2bf4
2 changed files with 9 additions and 2 deletions

View File

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