Controller (Routing)

Controller

class Controller (View source)

Methods

ControllerMiddlewareOptions middleware(array|string|Closure $middleware, array $options = array())

Register middleware on the controller.

array getMiddleware()

Get the middleware assigned to the controller.

Response callAction(string $method, array $parameters)

Execute an action on the controller.

mixed missingMethod(array $parameters = array())

Handle calls to missing methods on the controller.

mixed __call(string $method, array $parameters)

Handle calls to missing methods on the controller.

Details

ControllerMiddlewareOptions middleware(array|string|Closure $middleware, array $options = array())

Register middleware on the controller.

Parameters

array|string|Closure $middleware
array $options

Return Value

ControllerMiddlewareOptions

array getMiddleware()

Get the middleware assigned to the controller.

Return Value

array

Response callAction(string $method, array $parameters)

Execute an action on the controller.

Parameters

string $method
array $parameters

Return Value

Response

mixed missingMethod(array $parameters = array())

Handle calls to missing methods on the controller.

Parameters

array $parameters

Return Value

mixed

Exceptions

NotFoundHttpException

mixed __call(string $method, array $parameters)

Handle calls to missing methods on the controller.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Routing/Controller.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部