php artisan queue:work --timeout=60
public function store() {
// some stuff
// after 10 minutes
$on = CarbonCarbon::now()->addMinutes(10);
dispatch(new AppJobsSomeJob(...$someVariables))->delay($on);
}
$job_id = $this->dispatch(($job)
->onQueue('splitter')->delay($diff);