First steps

This commit is contained in:
2026-03-22 19:00:00 +01:00
parent 54f6a1d235
commit 5a5b9f7227
19 changed files with 2583 additions and 2 deletions

View File

@@ -1,7 +1,12 @@
<?php
use App\Http\Controllers\WebsiteController;
use Illuminate\Support\Facades\Route;
/*
Route::get('/', function () {
return view('welcome');
});
});*/
Route::redirect('/', '/de');
Route::get('/{lang}', [WebsiteController::class, 'index']);