Methods |
public
|
__construct(array $compiled, array $attributes): void
Create a new CompiledRouteCollection instance.
Create a new CompiledRouteCollection instance.
|
#
|
public
|
add(Route $route): Route
Add a Route instance to the collection.
Add a Route instance to the collection.
Implements
|
#
|
public
|
refreshNameLookups(): void
Refresh the name look-up table.
Refresh the name look-up table.
This is done in case any names are fluently defined or if routes are overwritten.
Implements
|
#
|
public
|
refreshActionLookups(): void
Refresh the action look-up table.
Refresh the action look-up table.
This is done in case any actions are overwritten with new controllers.
Implements
|
#
|
public
|
match(Request $request): Route
Find the first route matching a given request.
Find the first route matching a given request.
Throws
Implements
|
#
|
protected
|
requestWithoutTrailingSlash(Request $request): Request
Get a cloned instance of the given request without any trailing slash on the URI.
Get a cloned instance of the given request without any trailing slash on the URI.
|
#
|
public
|
get(string|null $method = null): Route[]
Get routes from the collection by method.
Get routes from the collection by method.
Implements
|
#
|
public
|
hasNamedRoute(string $name): bool
Determine if the route collection contains a given named route.
Determine if the route collection contains a given named route.
Implements
|
#
|
public
|
getByName(string $name): Route|null
Get a route instance by its name.
Get a route instance by its name.
Implements
|
#
|
public
|
getByAction(string $action): Route|null
Get a route instance by its controller action.
Get a route instance by its controller action.
Implements
|
#
|
public
|
getRoutes(): Route[]
Get all of the routes in the collection.
Get all of the routes in the collection.
Implements
|
#
|
public
|
getRoutesByMethod(): array
Get all of the routes keyed by their HTTP verb / method.
Get all of the routes keyed by their HTTP verb / method.
Implements
|
#
|
public
|
getRoutesByName(): Route[]
Get all of the routes keyed by their name.
Get all of the routes keyed by their name.
Implements
|
#
|
protected
|
newRoute(array $attributes): Route
Resolve an array of attributes to a Route instance.
Resolve an array of attributes to a Route instance.
|
#
|
public
|
setRouter(Router $router): $this
Set the router instance on the route.
Set the router instance on the route.
|
#
|
public
|
setContainer(Container $container): $this
Set the container instance on the route.
Set the container instance on the route.
|
#
|