init
All checks were successful
Deploy to Production / deploy (push) Successful in 13s

This commit is contained in:
珂珂 2024-11-15 16:13:17 +08:00
parent 07d82d25da
commit 0a4db6d902

View File

@ -50,9 +50,14 @@ public function action_push2contact()
$items = Testdrive::query()
->whereNotNull('source')
->where('status', Testdrive::STATUS_DRAFT)
->orderBy('id')
->get();
$contacts = Contact::query()
->where('status', Contact::STATUS_PUBLISHED)
->orderBy('id')
->get();
$contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->get();
$count = $contacts->count();
$offset = cache()->get('push2contact:offset', 0);
foreach ($items as $item) {