Reputation: 794
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
Upvotes: 5
Views: 10206
Reputation: 1835
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".
Upvotes: 6