Files
landing-api/routes/web.php
T
2026-07-09 13:52:11 +02:00

8 lines
108 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});