bạn có thể trong AfterInsertJob-> xử lý, khi thực thi, tạo hàng đợi mới:
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}
bạn có thể trong AfterInsertJob-> xử lý, khi thực thi, tạo hàng đợi mới:
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}