FailedJobsController
class FailedJobsController extends Controller
Properties
| protected array | $middleware | The middleware registered on the controller. |
from Controller |
Methods
middleware(Closure|array|string $middleware, array $options = [])
Register middleware on the controller.
from
Controller
mixed
callAction(string $method, array $parameters)
Execute an action on the controller.
from
Controller
mixed
__call(string $method, array $parameters)
Handle calls to missing methods on the controller.
from
Controller
array
show(string $id)
Get a failed job instance.
object
decode(object $job)
Decode the given job.
Details
in
Controller at line 20
ControllerMiddlewareOptions
middleware(Closure|array|string $middleware, array $options = [])
Register middleware on the controller.
in
Controller at line 35
array
getMiddleware()
Get the middleware assigned to the controller.
in
Controller at line 43
mixed
callAction(string $method, array $parameters)
Execute an action on the controller.
in
Controller at line 53
mixed
__call(string $method, array $parameters)
Handle calls to missing methods on the controller.
at line 17
__construct(JobRepository $jobs, TagRepository $tags)
Create a new controller instance.
at line 27
array
index(Request $request)
Get all of the failed jobs.
at line 49
protected Collection
paginate(Request $request)
Paginate the failed jobs for the request.
at line 61
protected Collection
paginateByTag(Request $request, string $tag)
Paginate the failed jobs for the request and tag.
at line 79
array
show(string $id)
Get a failed job instance.
at line 89
protected object
decode(object $job)
Decode the given job.