- It is a community project of a group of enthusiasts from Slovakia. - This service provides price comparison of Ikea products in European countries. - Product prices are converted to EUR at the current rate and appear in resulting table. - Information about the prices of Ikea products is obtained online. - You can go to the appropriate product page by clicking on the country name. - Thanks to this service, you can find out in which country a given Ikea product is the cheapest (you can sort - them in the resulting table). -
-+ It is a community project of a group of enthusiasts from Slovakia. + This service provides price comparison of Ikea products in European countries. + Product prices are converted to EUR at the current rate and appear in resulting table. + Information about the prices of Ikea products is obtained online. + You can go to the appropriate product page by clicking on the country name. + Thanks to this service, you can find out in which country a given Ikea product is the cheapest (you can sort + them in the resulting table). +
+If you have some comments or ideas for improvement about project, let as
If you have some comments or ideas for improvement about project, let as know...
+{{ $data['message'] }}
+ + diff --git a/routes/web.php b/routes/web.php index b8880c6..677249b 100644 --- a/routes/web.php +++ b/routes/web.php @@ -8,7 +8,7 @@ use App\Http\Controllers\CurrencyRatesController; use App\Http\Controllers\GeoIPController; use App\Http\Controllers\IkeaProductsController; use App\Http\Controllers\ProductsCompareController; - +use App\Http\Controllers\FeedbackController; /* |-------------------------------------------------------------------------- @@ -23,13 +23,14 @@ use App\Http\Controllers\ProductsCompareController; Route::get('/', function () { return Inertia::render('IkeaRoot'); -})->name('root'); +})->name('root'); Route::get('/about/', function () { - return Inertia::render('IkeaAbout'); -})->name('about'); + return Inertia::render('IkeaAbout'); +})->name('about'); Route::get('/exchange/', function () { - return Inertia::render('IkeaExchange'); -})->name('exchange'); + return Inertia::render('IkeaExchange'); +})->name('exchange'); +Route::post('users-send-email', [FeedbackController::class, 'sendEmail'])->name('ajax.send.email'); Route::get('/menu/get', [App\Http\Controllers\Superuser\UserMenuController::class, 'get'])->name('menu.user'); Route::get('/ip/get/{ip?}', [GeoIPController::class, 'index'])->name('geo.ip.get'); @@ -76,7 +77,7 @@ Route::middleware(['auth:sanctum', config('jetstream.auth_session'), 'verified'] Route::get('/', 'index')->name('index'); Route::patch('/', 'update')->name('update'); }); - + Route::get('/activity/login', [App\Http\Controllers\ActivityController::class, 'login'])->name('activity.login'); Route::get('/user/{user}/menu', fn (App\Models\User $user) => $user->menus())->name('user.menu'); @@ -87,4 +88,4 @@ Route::middleware(['auth:sanctum', config('jetstream.auth_session'), 'verified'] Route::post('/activity/login', [App\Http\Controllers\ActivityController::class, 'logins'])->name('activity.login.post'); Route::get('/menu/get', [App\Http\Controllers\Superuser\MenuController::class, 'get'])->name('menu'); }); -}); \ No newline at end of file +});