initial project files

This commit is contained in:
yuriko 🦊 2025-05-20 22:51:41 -04:00
commit 0d952f2967
Signed by: jaiden
SSH key fingerprint: SHA256:f8tvveBoXBrKZIQDWLLcpQrKbATUCGg98x2N4YzkDM8
56 changed files with 10386 additions and 0 deletions

7
routes/web.php Normal file
View file

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