ControllerDispatcher::dispatch()

mixed dispatch(Route $route, mixed $controller, string $method) Dispatch a request to a given controller and method. Parameters Route $route mixed $controller string $method Return Value mixed

ControllerDispatcher

ControllerDispatcher class ControllerDispatcher (View source) Traits RouteDependencyResolverTrait

Controller::__call()

mixed __call(string $method, array $parameters) Handle calls to missing methods on the controller. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

Controller::missingMethod()

mixed missingMethod(array $parameters = array()) Handle calls to missing methods on the controller. Parameters array $parameters Return Value mixed Exceptions NotFoundHttpException

Controller::middleware()

ControllerMiddlewareOptions middleware(array|string|Closure $middleware, array $options = array()) Register middleware on the controller. Parameters array|string|Closure $middleware array $options Return Value ControllerMiddlewareOptions

Controller::getMiddleware()

array getMiddleware() Get the middleware assigned to the controller. Return Value array

Controller::callAction()

Response callAction(string $method, array $parameters) Execute an action on the controller. Parameters string $method array $parameters Return Value Response

Controller

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 $met

Contribution Guide

Contribution Guide Bug Reports Core Development Discussion Which Branch? Security Vulnerabilities Coding Style PHPDoc StyleCI Bug Reports To encourage active collaboration, Laravel strongly encourages pull requests, not just bug reports. "Bug reports" may also be sent in the form of a pull request containing a failing test. However, if you file a bug report, your issue should contain a title and a clear description of the issue. You should also include as much relevant information as possib

Contracts\View

Illuminate\Contracts\View Interfaces Factory View