Files
spa-api/routes/web.php

15 lines
262 B
PHP
Raw Normal View History

2014-11-02 10:02:20 -06:00
<?php
2019-12-20 15:10:23 -06:00
use Illuminate\Support\Facades\Route;
2016-03-23 17:04:42 -05:00
Route::get('/', function () {
2025-04-28 17:00:09 +08:00
2025-05-05 09:44:50 +08:00
$framework = \App\Models\ProjectModel::with([
2025-04-28 17:00:09 +08:00
'frameworks',
'labels',
'technologyStacks',
])->get();
ds($framework);
2016-03-23 17:04:42 -05:00
return view('welcome');
});