|
...
|
...
|
@@ -698,11 +698,11 @@ Route::middleware(['bloginauth'])->group(function () { |
|
|
|
|
|
|
|
//google数据洞察
|
|
|
|
Route::prefix('google_keyword_insight')->group(function () {
|
|
|
|
Route::any('/getKeywordInsight', [\App\Http\Controllers\Bside\GoogleKeywordInsight\GoogleKeywordInsightController::class, 'getKeywordInsight'])->name('google_keyword_insight_getKeywordInsight');
|
|
|
|
Route::any('/getKeywordInsight', [\App\Http\Controllers\Bside\GoogleKeyword\GoogleKeywordInsightController::class, 'getKeywordInsight'])->name('google_keyword_insight_getKeywordInsight');
|
|
|
|
});
|
|
|
|
//google搜索数据
|
|
|
|
Route::prefix('google_search')->group(function () {
|
|
|
|
Route::any('/getSearchList', [\App\Http\Controllers\Bside\GoogleKeywordInsight\GoogleSearchController::class, 'getSearchList'])->name('google_search_getSearchList');
|
|
|
|
Route::any('/getSearchList', [\App\Http\Controllers\Bside\GoogleKeyword\GoogleSearchController::class, 'getSearchList'])->name('google_search_getSearchList');
|
|
|
|
});
|
|
|
|
//企业产品库
|
|
|
|
Route::prefix('enterprise_product')->group(function () {
|
...
|
...
|
|