20 lines
483 B
PHP
20 lines
483 B
PHP
<?php
|
|
|
|
use App\Models\Product;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Laravel\Fortify\Features;
|
|
|
|
/*Route::inertia('/', 'Welcome', [
|
|
'canRegister' => 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';
|