Router
class Router implements Registrar (View source)
Traits
| Macroable | 
Properties
| static protected array | $macros | The registered string macros. | from Macroable | 
| protected Dispatcher | $events | The event dispatcher instance. | |
| protected Container | $container | The IoC container instance. | |
| protected RouteCollection | $routes | The route collection instance. | |
| protected Route | $current | The currently dispatched route instance. | |
| protected Request | $currentRequest | The request currently being dispatched. | |
| protected array | $middleware | All of the short-hand keys for middlewares. | |
| protected array | $middlewareGroups | All of the middleware groups. | |
| array | $middlewarePriority | The priority-sorted list of middleware. | |
| protected array | $binders | The registered route value binders. | |
| protected array | $patterns | The globally available parameter patterns. | |
| protected array | $groupStack | The route group attribute stack. | |
| static array | $verbs | All of the verbs supported by the router. | 
Methods
| static void |  macro(string $name, callable $macro)  Register a custom macro.  |  from Macroable | 
| static bool |  hasMacro(string $name)  Checks if macro is registered.  |  from Macroable | 
| static mixed |  __callStatic(string $method, array $parameters)  Dynamically handle calls to the class.  |  from Macroable | 
| mixed |  __call(string $method, array $parameters)  Dynamically handle calls to the class.  |  from Macroable | 
| void |  __construct(Dispatcher $events, Container $container = null)  Create a new Router instance.  |  |
| void |  get(string $uri, Closure|array|string $action = null)  Register a new GET route with the router.  |  |
| void |  post(string $uri, Closure|array|string $action = null)  Register a new POST route with the router.  |  |
| void |  put(string $uri, Closure|array|string $action = null)  Register a new PUT route with the router.  |  |
| void |  patch(string $uri, Closure|array|string $action = null)  Register a new PATCH route with the router.  |  |
| void |  delete(string $uri, Closure|array|string $action = null)  Register a new DELETE route with the router.  |  |
| void |  options(string $uri, Closure|array|string $action = null)  Register a new OPTIONS route with the router.  |  |
| Route |  any(string $uri, Closure|array|string|null $action = null)  Register a new route responding to all verbs.  |  |
| void |  match(array|string $methods, string $uri, Closure|array|string $action = null)  Register a new route with the given verbs.  |  |
| void |  singularResourceParameters(bool $singular = true)  Set the unmapped global resource parameters to singular.  |  |
| void |  resourceParameters(array $parameters = [])  Set the global resource parameter mapping.  |  |
| array|null |  resourceVerbs(array $verbs = [])  Get or set the verbs used in the resource URIs.  |  |
| void |  resources(array $resources)  Register an array of resource controllers.  |  |
| void |  resource(string $name, string $controller, array $options = [])  Route a resource to a controller.  |  |
| void |  auth()  Register the typical authentication routes for an application.  |  |
| void |  group(array $attributes, Closure $callback)  Create a route group with shared attributes.  |  |
| void |  updateGroupStack(array $attributes)  Update the group stack with the given attributes.  |  |
| array |  mergeWithLastGroup(array $new)  Merge the given array with the last group stack.  |  |
| static array |  mergeGroup(array $new, array $old)  Merge the given group attributes.  |  |
| static string|null |  formatUsesPrefix(array $new, array $old)  Format the uses prefix for the new group attributes.  |  |
| static string|null |  formatGroupPrefix(array $new, array $old)  Format the prefix for the new group attributes.  |  |
| string |  getLastGroupPrefix()  Get the prefix from the last group on the stack.  |  |
| Route |  addRoute(array|string $methods, string $uri, Closure|array|string|null $action)  Add a route to the underlying route collection.  |  |
| Route |  createRoute(array|string $methods, string $uri, mixed $action)  Create a new route instance.  |  |
| Route |  newRoute(array|string $methods, string $uri, mixed $action)  Create a new Route object.  |  |
| string |  prefix(string $uri)  Prefix the given URI with the last prefix.  |  |
| Route |  addWhereClausesToRoute(Route $route)  Add the necessary where clauses to the route based on its initial registration.  |  |
| void |  mergeGroupAttributesIntoRoute(Route $route)  Merge the group stack with the controller action.  |  |
| bool |  actionReferencesController(array $action)  Determine if the action is routing to a controller.  |  |
| array |  convertToControllerAction(array|string $action)  Add a controller based route action to the action array.  |  |
| string |  prependGroupUses(string $uses)  Prepend the last group uses onto the use clause.  |  |
| Response |  dispatch(Request $request)  Dispatch the request to the application.  |  |
| mixed |  dispatchToRoute(Request $request)  Dispatch the request to a route and return the response.  |  |
| mixed |  runRouteWithinStack(Route $route, Request $request)  Run the given route within a Stack "onion" instance.  |  |
| array |  gatherRouteMiddleware(Route $route)  Gather the middleware for the given route.  |  |
| string|array |  resolveMiddlewareClassName(string $name)  Resolve the middleware name to a class name(s) preserving passed parameters.  |  |
| array |  parseMiddlewareGroup(string $name)  Parse the middleware group and format it for usage.  |  |
| array |  sortMiddleware(Collection $middlewares)  Sort the given middleware by priority.  |  |
| Route |  findRoute(Request $request)  Find the route matching a given request.  |  |
| Route |  substituteBindings(Route $route)  Substitute the route bindings onto the route.  |  |
| void |  substituteImplicitBindings(Route $route)  Substitute the implicit Eloquent model bindings for the route.  |  |
| mixed |  performBinding(string $key, string $value, Route $route)  Call the binding callback for the given key.  |  |
| void |  matched(string|callable $callback)  Register a route matched event listener.  |  |
| array |  getMiddleware()  Get all of the defined middleware short-hand names.  |  |
| $this |  middleware(string $name, string $class)  Register a short-hand name for a middleware.  |  |
| $this |  middlewareGroup(string $name, array $middleware)  Register a group of middleware.  |  |
| $this |  prependMiddlewareToGroup(string $group, string $middleware)  Add a middleware to the beginning of a middleware group.  |  |
| $this |  pushMiddlewareToGroup(string $group, string $middleware)  Add a middleware to the end of a middleware group.  |  |
| void |  model(string $key, string $class, Closure $callback = null)  Register a model binder for a wildcard.  |  |
| void |  bind(string $key, string|callable $binder)  Add a new route parameter binder.  |  |
| Closure |  createClassBinding(string $binding)  Create a class based binding using the IoC container.  |  |
| void |  pattern(string $key, string $pattern)  Set a global where pattern on all routes.  |  |
| void |  patterns(array $patterns)  Set a group of global where patterns on all routes.  |  |
| Response |  prepareResponse(Request $request, mixed $response)  Create a response instance from the given value.  |  |
| bool |  hasGroupStack()  Determine if the router currently has a group stack.  |  |
| array |  getGroupStack()  Get the current group stack for the router.  |  |
| mixed |  input(string $key, string $default = null)  Get a route parameter for the current route.  |  |
| Route |  getCurrentRoute()  Get the currently dispatched route instance.  |  |
| Route |  current()  Get the currently dispatched route instance.  |  |
| bool |  has(string $name)  Check if a route with the given name exists.  |  |
| string|null |  currentRouteName()  Get the current route name.  |  |
| bool |  is()  Alias for the "currentRouteNamed" method.  |  |
| bool |  currentRouteNamed(string $name)  Determine if the current route matches a given name.  |  |
| string|null |  currentRouteAction()  Get the current route action.  |  |
| bool |  uses()  Alias for the "currentRouteUses" method.  |  |
| bool |  currentRouteUses(string $action)  Determine if the current route action matches a given action.  |  |
| Request |  getCurrentRequest()  Get the request currently being dispatched.  |  |
| RouteCollection |  getRoutes()  Get the underlying route collection.  |  |
| void |  setRoutes(RouteCollection $routes)  Set the route collection instance.  |  |
| array |  getPatterns()  Get the global "where" patterns.  |  
Details
static void macro(string $name, callable $macro)
Register a custom macro.
static bool hasMacro(string $name)
Checks if macro is registered.
static mixed __callStatic(string $method, array $parameters)
Dynamically handle calls to the class.
mixed __call(string $method, array $parameters)
Dynamically handle calls to the class.
void __construct(Dispatcher $events, Container $container = null)
Create a new Router instance.
void get(string $uri, Closure|array|string $action = null)
Register a new GET route with the router.
void post(string $uri, Closure|array|string $action = null)
Register a new POST route with the router.
void put(string $uri, Closure|array|string $action = null)
Register a new PUT route with the router.
void patch(string $uri, Closure|array|string $action = null)
Register a new PATCH route with the router.
void delete(string $uri, Closure|array|string $action = null)
Register a new DELETE route with the router.
void options(string $uri, Closure|array|string $action = null)
Register a new OPTIONS route with the router.
Route any(string $uri, Closure|array|string|null $action = null)
Register a new route responding to all verbs.
void match(array|string $methods, string $uri, Closure|array|string $action = null)
Register a new route with the given verbs.
void singularResourceParameters(bool $singular = true)
Set the unmapped global resource parameters to singular.
void resourceParameters(array $parameters = [])
Set the global resource parameter mapping.
array|null resourceVerbs(array $verbs = [])
Get or set the verbs used in the resource URIs.
void resources(array $resources)
Register an array of resource controllers.
void resource(string $name, string $controller, array $options = [])
Route a resource to a controller.
void auth()
Register the typical authentication routes for an application.
void group(array $attributes, Closure $callback)
Create a route group with shared attributes.
protected void updateGroupStack(array $attributes)
Update the group stack with the given attributes.
array mergeWithLastGroup(array $new)
Merge the given array with the last group stack.
static array mergeGroup(array $new, array $old)
Merge the given group attributes.
static protected string|null formatUsesPrefix(array $new, array $old)
Format the uses prefix for the new group attributes.
static protected string|null formatGroupPrefix(array $new, array $old)
Format the prefix for the new group attributes.
string getLastGroupPrefix()
Get the prefix from the last group on the stack.
protected Route addRoute(array|string $methods, string $uri, Closure|array|string|null $action)
Add a route to the underlying route collection.
protected Route createRoute(array|string $methods, string $uri, mixed $action)
Create a new route instance.
protected Route newRoute(array|string $methods, string $uri, mixed $action)
Create a new Route object.
protected string prefix(string $uri)
Prefix the given URI with the last prefix.
protected Route addWhereClausesToRoute(Route $route)
Add the necessary where clauses to the route based on its initial registration.
protected void mergeGroupAttributesIntoRoute(Route $route)
Merge the group stack with the controller action.
protected bool actionReferencesController(array $action)
Determine if the action is routing to a controller.
protected array convertToControllerAction(array|string $action)
Add a controller based route action to the action array.
protected string prependGroupUses(string $uses)
Prepend the last group uses onto the use clause.
mixed dispatchToRoute(Request $request)
Dispatch the request to a route and return the response.
protected mixed runRouteWithinStack(Route $route, Request $request)
Run the given route within a Stack "onion" instance.
array gatherRouteMiddleware(Route $route)
Gather the middleware for the given route.
string|array resolveMiddlewareClassName(string $name)
Resolve the middleware name to a class name(s) preserving passed parameters.
protected array parseMiddlewareGroup(string $name)
Parse the middleware group and format it for usage.
protected array sortMiddleware(Collection $middlewares)
Sort the given middleware by priority.
void substituteImplicitBindings(Route $route)
Substitute the implicit Eloquent model bindings for the route.
protected mixed performBinding(string $key, string $value, Route $route)
Call the binding callback for the given key.
void matched(string|callable $callback)
Register a route matched event listener.
array getMiddleware()
Get all of the defined middleware short-hand names.
$this middleware(string $name, string $class)
Register a short-hand name for a middleware.
$this middlewareGroup(string $name, array $middleware)
Register a group of middleware.
$this prependMiddlewareToGroup(string $group, string $middleware)
Add a middleware to the beginning of a middleware group.
If the middleware is already in the group, it will not be added again.
$this pushMiddlewareToGroup(string $group, string $middleware)
Add a middleware to the end of a middleware group.
If the middleware is already in the group, it will not be added again.
void model(string $key, string $class, Closure $callback = null)
Register a model binder for a wildcard.
void bind(string $key, string|callable $binder)
Add a new route parameter binder.
Closure createClassBinding(string $binding)
Create a class based binding using the IoC container.
void pattern(string $key, string $pattern)
Set a global where pattern on all routes.
void patterns(array $patterns)
Set a group of global where patterns on all routes.
Response prepareResponse(Request $request, mixed $response)
Create a response instance from the given value.
bool hasGroupStack()
Determine if the router currently has a group stack.
array getGroupStack()
Get the current group stack for the router.
mixed input(string $key, string $default = null)
Get a route parameter for the current route.
Route getCurrentRoute()
Get the currently dispatched route instance.
Route current()
Get the currently dispatched route instance.
bool has(string $name)
Check if a route with the given name exists.
string|null currentRouteName()
Get the current route name.
bool is()
Alias for the "currentRouteNamed" method.
bool currentRouteNamed(string $name)
Determine if the current route matches a given name.
string|null currentRouteAction()
Get the current route action.
bool uses()
Alias for the "currentRouteUses" method.
bool currentRouteUses(string $action)
Determine if the current route action matches a given action.
Request getCurrentRequest()
Get the request currently being dispatched.
RouteCollection getRoutes()
Get the underlying route collection.
void setRoutes(RouteCollection $routes)
Set the route collection instance.
array getPatterns()
Get the global "where" patterns.
    © Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
    https://laravel.com/api/5.3/Illuminate/Routing/Router.html