|
...
|
...
|
@@ -234,7 +234,7 @@ class RankDataLogic extends BaseLogic |
|
|
|
$flg_ai = $this->getAiFlag($ai_projects, $domain);
|
|
|
|
$ai_domain = str_replace('www.', '', $this->getAiProjects($domain)['domain'] ?? '');
|
|
|
|
if (Str::endsWith($api_no, '_bmseo')) {
|
|
|
|
$list = RankDataBmseo::where('project_id', $project_id)->where('api_no', $api_no)->where('lang', $lang)->value('data') ?: [];
|
|
|
|
$list = RankDataBmseo::where('project_id', $project_id)->where('api_no', $api_no)->value('data') ?: [];
|
|
|
|
} else {
|
|
|
|
$list = RankData::where('project_id', $project_id)->where('api_no', $api_no)->where('lang', $lang)->value('data') ?: [];
|
|
|
|
}
|
...
|
...
|
|