class BatchesController 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.

array
getMiddleware()

Get the middleware assigned to the controller.

mixed
callAction(string $method, array $parameters)

Execute an action on the controller.

mixed
__call(string $method, array $parameters)

Handle calls to missing methods on the controller.

__construct(BatchRepository $batches)

Create a new controller instance.

array
index(Request $request)

Get all of the batches.

array
show(string $id)

Get the details of a batch by ID.

void
retry(string $id)

Retry the given batch.

Details

in Controller at line 20
ControllerMiddlewareOptions middleware(Closure|array|string $middleware, array $options = [])

Register middleware on the controller.

Parameters

Closure|array|string $middleware
array $options

Return Value

ControllerMiddlewareOptions

in Controller at line 35
array getMiddleware()

Get the middleware assigned to the controller.

Return Value

array

in Controller at line 43
mixed callAction(string $method, array $parameters)

Execute an action on the controller.

Parameters

string $method
array $parameters

Return Value

mixed

in Controller at line 53
mixed __call(string $method, array $parameters)

Handle calls to missing methods on the controller.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

at line 22
__construct(BatchRepository $batches)

Create a new controller instance.

Parameters

BatchRepository $batches

the job repository implementation

at line 31
array index(Request $request)

Get all of the batches.

Parameters

Request $request

Return Value

array

at line 78
array show(string $id)

Get the details of a batch by ID.

Parameters

string $id

Return Value

array

at line 96
void retry(string $id)

Retry the given batch.

Parameters

string $id

Return Value

void