This commit is contained in:
parent
07d82d25da
commit
0a4db6d902
@ -50,9 +50,14 @@ public function action_push2contact()
|
|||||||
$items = Testdrive::query()
|
$items = Testdrive::query()
|
||||||
->whereNotNull('source')
|
->whereNotNull('source')
|
||||||
->where('status', Testdrive::STATUS_DRAFT)
|
->where('status', Testdrive::STATUS_DRAFT)
|
||||||
|
->orderBy('id')
|
||||||
|
->get();
|
||||||
|
|
||||||
|
$contacts = Contact::query()
|
||||||
|
->where('status', Contact::STATUS_PUBLISHED)
|
||||||
|
->orderBy('id')
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
$contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->get();
|
|
||||||
$count = $contacts->count();
|
$count = $contacts->count();
|
||||||
$offset = cache()->get('push2contact:offset', 0);
|
$offset = cache()->get('push2contact:offset', 0);
|
||||||
foreach ($items as $item) {
|
foreach ($items as $item) {
|
||||||
|
Loading…
Reference in New Issue
Block a user