This commit is contained in:
toom1996
2025-06-24 10:18:19 +08:00
parent 6a42592abf
commit 84dab07fec
2 changed files with 3 additions and 3 deletions

View File

@ -200,7 +200,7 @@ class KeywordsController extends AbstractController
$baiduPCRes = AppKeywordsMonitorResult::query()
->where('is_delete', 0)
->where('platform', 1)
->where('created_at', '>', date('Y-m-d H:i:s', strtotime('today')))
->where('created_at', '>', strtotime('today'))
->orderBy('aid', 'desc')
->get()
->toArray();
@ -214,7 +214,7 @@ class KeywordsController extends AbstractController
$baiduWAPRes = AppKeywordsMonitorResult::query()
->where('is_delete', 0)
->where('platform', 2)
->where('created_at', '>', date('Y-m-d H:i:s', strtotime('today')))
->where('created_at', '>', strtotime('today'))
->orderBy('aid', 'desc')
->get()
->toArray();