init
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
Ovidiu U
2026-04-03 16:47:05 +01:00
parent 8cf504ec3c
commit c94c4f7beb
117 changed files with 16703 additions and 0 deletions

11
routes/web.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::middleware(['auth', 'verified'])->group(function () {
Route::view('dashboard', 'dashboard')->name('dashboard');
});
require __DIR__.'/settings.php';