forge/routes/web.php

14 lines
320 B
PHP
Raw Normal View History

2024-05-13 18:55:34 -04:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
2024-05-14 22:15:20 -04:00
Route::middleware(['auth:sanctum', config('jetstream.auth_session'), 'verified'])->group(function () {
2024-05-13 18:55:34 -04:00
Route::get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
});