Laravel Artisan Queue Command: The queue:flush Command
The queue:flush command can be used to easily clear the log of failed queue jobs. By calling this command, all entries from the failed_jobs database table will be removed. This can be achieved using the flush method on the configured FailedJobProviderInterface instance, which is bound to the key queue.failed in the service container. An equivalent PHP method call would be...