Features::enabled(Features::registration()), ])->name('home');*/ Route::get('/', fn () => inertia('Home', [ 'products' => Product::all(), ]))->name('home'); Route::middleware(['auth', 'verified'])->group(function () { Route::inertia('dashboard', 'Dashboard')->name('dashboard'); }); require __DIR__.'/settings.php';