I think you need to use laravel queues
Octane::concurrently([
'outer_concurrency' => function () {
// Here try to despatch the queue
dispatch(function () {
return 1;
})->onConnection('octane');
},
]);