This commit is contained in:
2025-09-10 16:44:46 +05:00
parent a1521ace7a
commit a622f7651a
4 changed files with 67 additions and 58 deletions

View File

@@ -27,15 +27,14 @@ class SendSberToSystem implements ShouldQueue
public function handle(): void
{
$orderItem = SberPaymentOrderItem::query()
->where('paid', true)
->where('synced_with_system', false)
->whereDate('created_at', '>', '2025-09-05')
->first();
->where('paid', true)
->where('synced_with_system', false)
->whereDate('created_at', '>', '2025-09-05')
->first();
if (! $orderItem) {
return;
}
}
}