Map of product count

This commit is contained in:
2024-03-25 19:20:28 +01:00
parent 21865a35d9
commit 4503b7c33f
7 changed files with 73 additions and 10 deletions

View File

@@ -11,6 +11,7 @@ use App\Http\Controllers\ProductsCompareController;
use App\Http\Controllers\FeedbackController;
use App\Http\Controllers\SettingsController;
use App\Http\Controllers\OnlineCompareController;
use App\Http\Controllers\ProductsCountController;
/*
|--------------------------------------------------------------------------
| Web Routes
@@ -32,7 +33,8 @@ Route::get('/exchange/', function () {
return Inertia::render('IkeaExchange');
})->name('exchange');
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/online', [OnlineCompareController::class,'compare'])->name('products.online.compare');
Route::get('/products/count', [ProductsCountController::class,'index'])->name('products.count');
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');
Route::get('/ccountry/', [CountryCodeController::class, 'index'])->name('ccountry.index');