Skip to content

Commit 614eb5a

Browse files
committed
fix conflicts
2 parents e3f6525 + 9f2c409 commit 614eb5a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

routes/web.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
<?php
22

3-
use Illuminate\Foundation\Application;
43
use Illuminate\Support\Facades\Route;
54
use Inertia\Inertia;
65
use Laravel\WorkOS\Http\Middleware\ValidateSessionWithWorkOS;
76

8-
Route::get('/', fn () => Inertia::render('welcome', [
9-
'laravelVersion' => Application::VERSION,
10-
'phpVersion' => PHP_VERSION,
11-
]));
7+
Route::get('/', function () {
8+
return Inertia::render('welcome');
9+
})->name('home');
1210

1311
Route::middleware([
1412
'auth',

0 commit comments

Comments
 (0)