I'm using database as queue driver in my system. How can I delete a queued job that is stored in my jobs table?
Thanks
Implement the Illuminate\Queue\InteractsWithQueue
trait which gives you access to the delete()
method.
More information in the API and in the docs under "Manually accessing the queue".