We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54fb747 commit 9f2c409Copy full SHA for 9f2c409
routes/web.php
@@ -5,12 +5,7 @@
5
use Inertia\Inertia;
6
7
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
- ]);
+ return Inertia::render('welcome');
14
})->name('home');
15
16
Route::middleware(['auth'])->group(function () {
0 commit comments