Methods |
public
|
__construct(Router $router): void
Create a new resource registrar instance.
Create a new resource registrar instance.
|
#
|
public
|
register(string $name, string $controller, array $options = []): RouteCollection
Route a resource to a controller.
Route a resource to a controller.
|
#
|
public
|
singleton(string $name, string $controller, array $options = []): RouteCollection
Route a singleton resource to a controller.
Route a singleton resource to a controller.
|
#
|
protected
|
prefixedResource(string $name, string $controller, array $options): Router
Build a set of prefixed resource routes.
Build a set of prefixed resource routes.
|
#
|
protected
|
prefixedSingleton(string $name, string $controller, array $options): Router
Build a set of prefixed singleton routes.
Build a set of prefixed singleton routes.
|
#
|
protected
|
getResourcePrefix(string $name): array
Extract the resource and prefix from a resource name.
Extract the resource and prefix from a resource name.
|
#
|
protected
|
getResourceMethods(array $defaults, array $options): array
Get the applicable resource methods.
Get the applicable resource methods.
|
#
|
protected
|
addResourceIndex(string $name, string $base, string $controller, array $options): Route
Add the index method for a resourceful route.
Add the index method for a resourceful route.
|
#
|
protected
|
addResourceCreate(string $name, string $base, string $controller, array $options): Route
Add the create method for a resourceful route.
Add the create method for a resourceful route.
|
#
|
protected
|
addResourceStore(string $name, string $base, string $controller, array $options): Route
Add the store method for a resourceful route.
Add the store method for a resourceful route.
|
#
|
protected
|
addResourceShow(string $name, string $base, string $controller, array $options): Route
Add the show method for a resourceful route.
Add the show method for a resourceful route.
|
#
|
protected
|
addResourceEdit(string $name, string $base, string $controller, array $options): Route
Add the edit method for a resourceful route.
Add the edit method for a resourceful route.
|
#
|
protected
|
addResourceUpdate(string $name, string $base, string $controller, array $options): Route
Add the update method for a resourceful route.
Add the update method for a resourceful route.
|
#
|
protected
|
addResourceDestroy(string $name, string $base, string $controller, array $options): Route
Add the destroy method for a resourceful route.
Add the destroy method for a resourceful route.
|
#
|
protected
|
addSingletonCreate(string $name, string $controller, array $options): Route
Add the create method for a singleton route.
Add the create method for a singleton route.
|
#
|
protected
|
addSingletonStore(string $name, string $controller, array $options): Route
Add the store method for a singleton route.
Add the store method for a singleton route.
|
#
|
protected
|
addSingletonShow(string $name, string $controller, array $options): Route
Add the show method for a singleton route.
Add the show method for a singleton route.
|
#
|
protected
|
addSingletonEdit(string $name, string $controller, array $options): Route
Add the edit method for a singleton route.
Add the edit method for a singleton route.
|
#
|
protected
|
addSingletonUpdate(string $name, string $controller, array $options): Route
Add the update method for a singleton route.
Add the update method for a singleton route.
|
#
|
protected
|
addSingletonDestroy(string $name, string $controller, array $options): Route
Add the destroy method for a singleton route.
Add the destroy method for a singleton route.
|
#
|
protected
|
getShallowName(string $name, array $options): string
Get the name for a given resource with shallowness applied when applicable.
Get the name for a given resource with shallowness applied when applicable.
|
#
|
protected
|
setResourceBindingFields(Route $route, array $bindingFields): void
Set the route's binding fields if the resource is scoped.
Set the route's binding fields if the resource is scoped.
|
#
|
public
|
getResourceUri(string $resource): string
Get the base resource URI for a given resource.
Get the base resource URI for a given resource.
|
#
|
protected
|
getNestedResourceUri(array $segments): string
Get the URI for a nested resource segment array.
Get the URI for a nested resource segment array.
|
#
|
public
|
getResourceWildcard(string $value): string
Format a resource parameter for usage.
Format a resource parameter for usage.
|
#
|
protected
|
getResourceAction(string $resource, string $controller, string $method, array $options): array
Get the action array for a resource route.
Get the action array for a resource route.
|
#
|
protected
|
getResourceRouteName(string $resource, string $method, array $options): string
Get the name for a given resource.
Get the name for a given resource.
|
#
|
public
static
|
singularParameters(bool $singular = true): void
Set or unset the unmapped global parameters to singular.
Set or unset the unmapped global parameters to singular.
|
#
|
public
static
|
getParameters(): array
Get the global parameter map.
Get the global parameter map.
|
#
|
public
static
|
setParameters(array $parameters = []): void
Set the global parameter mapping.
Set the global parameter mapping.
|
#
|
public
static
|
verbs(array $verbs = []): array
Get or set the action verbs used in the resource URIs.
Get or set the action verbs used in the resource URIs.
|
#
|