Hello, as stated I'm trying to push Jobs using Bus::chain.
Altho, I'd like to use different arguments to each job even if it's same chain.
It looks like something like this is NOT CORRECT
$articles = Article::all();
$jobs = [];
foreach($articles as $article) {
$job = new CustomJob($article);
array_push($jobs, $job);
}
Bus::chain($jobs)->dispatch();
But instead the arguments should be in the dispatch function.
Is there a way to chain jobs with different arguments?