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 5aae894 commit 5743117Copy full SHA for 5743117
routes/web.php
@@ -7,6 +7,8 @@
7
use Illuminate\Support\Str;
8
Route::get('/', function () {
9
return Inertia::render('Welcome', [
10
+ 'canLogin' => Route::has('login'),
11
+ 'canRegister' => Route::has('register'),
12
'callerId' => Str::random(6)
13
]);
14
});
0 commit comments