class FailedJobs
Lists, retries and forgets failed jobs for the admin dashboard.
Retrying mirrors Illuminate\Queue\Console\RetryCommand exactly (reset attempts, refresh retryUntil, re-push raw, then forget) so the API and the queue:retry CLI command behave identically. Everything is driven by the queue.failer provider, so this works for any backend whose failer core knows about.
Methods
bool
retry(string $id)
Re-dispatch a failed job and remove its failed record. Returns false if no such job exists.
Details
at
line 28
__construct(FailedJobProviderInterface $failer, Factory $queue, Dispatcher $events)
at
line 38
array
all()
at
line 58
bool
retry(string $id)
Re-dispatch a failed job and remove its failed record. Returns false if no such job exists.