initial commit

This commit is contained in:
maotovisk 2025-11-07 13:36:00 -03:00
commit 2e0cbc254c
174 changed files with 27742 additions and 0 deletions

20
routes/web.php Normal file
View file

@ -0,0 +1,20 @@
<?php
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
use App\Http\Controllers\DashboardController;
use Laravel\Fortify\Features;
Route::get('/', function () {
return Inertia::render('welcome', [
'canRegister' => Features::enabled(Features::registration()),
]);
})->name('home');
Route::middleware(['auth', 'verified'])->group(function () {
Route::get('dashboard', [DashboardController::class, 'index'])->name('dashboard');
Route::get('teste', [DashboardController::class, 'teste'])->name('teste');
});
require __DIR__.'/settings.php';