This commit is contained in:
parent
07d82d25da
commit
0a4db6d902
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user