Default setup of laravel environment

- Creating default laravel setup with composer
This commit is contained in:
2026-04-26 21:08:51 +02:00
parent 328d7f9c7a
commit 41e1d7ffb5
56 changed files with 10333 additions and 44 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});