Add documentation

This commit is contained in:
2024-03-29 12:52:15 +01:00
parent 4aca08d89a
commit da6159861d
11 changed files with 67 additions and 15 deletions

View File

@@ -32,6 +32,10 @@ Route::get('/about/', function () {
Route::get('/exchange/', function () {
return Inertia::render('IkeaExchange');
})->name('exchange');
Route::get('/doc/', function () {
return Inertia::render('IkeaDoc');
})->name('doc');
Route::post('users-send-email', [FeedbackController::class, 'sendEmail'])->name('ajax.send.email');
//Route::get('/products/online', [OnlineCompareController::class,'compare'])->name('products.online.compare');
Route::get('/products/count', [ProductsCountController::class,'index'])->name('products.count');