How can I retrieve all the jobIds that are dispatched in a chain, for example:
ProcessPodcast::withChain([
new OptimizePodcast,
new ReleasePodcast
])->dispatch();
What are the ids of the ProcessPodcast
, OptimizePodcast
and ReleasePodcast
jobs?