Hi
I have a Job that needs to trigger a new Laravel Job when it has finished. Which method should it use?
$this->dispatch(new ProcessReport($this->report));
Queue::push('SendEmail', array('message' => $message));
The first method is what I would guess from the docs, but this then runs the second Job inside the first Job Object, it looks like from the logs.
Thanks.
tristan
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community