Laravel Queue?
how to get the ID of the tasks to queue in Laravel.
In version 4 it was $job->getJobId(), and 5?
1 answer
There is a traitInteractsWithQueue
, add it to the class-the handler and get the id $this->job->getJobId()
Find more questions by tags LaravelPHP