AfterInsertJob-> handleで、実行時に新しいキューを作成できます:
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}
AfterInsertJob-> handleで、実行時に新しいキューを作成できます:
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}