RouteCollection
class RouteCollection implements Countable, IteratorAggregate (View source)
Methods
Route | add(Route $route) Add a Route instance to the collection. | |
void | refreshNameLookups() Refresh the name look-up table. | |
Route | match(Request $request) Find the first route matching a given request. | |
array | get(string|null $method = null) Get all of the routes in the collection. | |
bool | hasNamedRoute(string $name) Determine if the route collection contains a given named route. | |
Route|null | getByName(string $name) Get a route instance by its name. | |
Route|null | getByAction(string $action) Get a route instance by its controller action. | |
array | getRoutes() Get all of the routes in the collection. | |
array | getRoutesByMethod() Get all of the routes keyed by their HTTP verb / method. | |
ArrayIterator | getIterator() Get an iterator for the items. | |
int | count() Count the number of items in the collection. |
Please login to continue.