Tommy Lee
Tommy Lee

Reputation: 794

Deleting queued jobs in Laravel 5

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

Answers (1)

Shaz Ravenswood
Shaz Ravenswood

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

Related Questions