initial commit

This commit is contained in:
Clément
2025-04-12 12:57:08 +02:00
commit 9c129fc03d
65 changed files with 13629 additions and 0 deletions

7
laravel/routes/web.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});