Skip to content

Commit 9f2c409

Browse files
committed
update main route
1 parent 54fb747 commit 9f2c409

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

routes/web.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
use Inertia\Inertia;
66

77
Route::get('/', function () {
8-
return Inertia::render('welcome', [
9-
'canLogin' => Route::has('login'),
10-
'canRegister' => Route::has('register'),
11-
'laravelVersion' => Application::VERSION,
12-
'phpVersion' => PHP_VERSION,
13-
]);
8+
return Inertia::render('welcome');
149
})->name('home');
1510

1611
Route::middleware(['auth'])->group(function () {

0 commit comments

Comments
 (0)