Methods |
public
|
__construct(Router $router): void
Create a new route registrar instance.
Create a new route registrar instance.
|
#
|
public
|
attribute(string $key, mixed $value): $this
Set the value for a given attribute.
Set the value for a given attribute.
Throws
|
#
|
public
|
resource(string $name, string $controller, array $options = []): PendingResourceRegistration
Route a resource to a controller.
Route a resource to a controller.
|
#
|
public
|
apiResource(string $name, string $controller, array $options = []): PendingResourceRegistration
Route an API resource to a controller.
Route an API resource to a controller.
|
#
|
public
|
singleton(string $name, string $controller, array $options = []): PendingSingletonResourceRegistration
Route a singleton resource to a controller.
Route a singleton resource to a controller.
|
#
|
public
|
apiSingleton(string $name, string $controller, array $options = []): PendingSingletonResourceRegistration
Route an API singleton resource to a controller.
Route an API singleton resource to a controller.
|
#
|
public
|
group(Closure|array|string $callback): $this
Create a route group with shared attributes.
Create a route group with shared attributes.
|
#
|
public
|
match(array|string $methods, string $uri, Closure|array|string|null $action = null): Route
Register a new route with the given verbs.
Register a new route with the given verbs.
|
#
|
protected
|
registerRoute(string $method, string $uri, Closure|array|string|null $action = null): Route
Register a new route with the router.
Register a new route with the router.
|
#
|
protected
|
compileAction(Closure|array|string|null $action): array
Compile the action into an array including the attributes.
Compile the action into an array including the attributes.
|
#
|
public
|
__call(string $method, array $parameters): Route|$this
Dynamically handle calls into the route registrar.
Dynamically handle calls into the route registrar.
Throws
|
#
|
public
|
any(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
delete(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
get(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
options(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
patch(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
post(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
put(string $uri, Closure|array|string|null $action = null): Route
|
#
|
public
|
as(string $value): RouteRegistrar
|
#
|
public
|
can(UnitEnum|string $ability, array|string $models = []): RouteRegistrar
|
#
|
public
|
controller(string $controller): RouteRegistrar
|
#
|
public
|
domain(BackedEnum|string $value): RouteRegistrar
|
#
|
public
|
middleware(array|string|null $middleware): RouteRegistrar
|
#
|
public
|
missing(Closure $missing): RouteRegistrar
|
#
|
public
|
name(BackedEnum|string $value): RouteRegistrar
|
#
|
public
|
namespace(string|null $value): RouteRegistrar
|
#
|
public
|
prefix(string $prefix): RouteRegistrar
|
#
|
public
|
scopeBindings(): RouteRegistrar
|
#
|
public
|
where(array $where): RouteRegistrar
|
#
|
public
|
withoutMiddleware(array|string $middleware): RouteRegistrar
|
#
|
public
|
withoutScopedBindings(): RouteRegistrar
|
#
|
Properties |
protected
|
Router
|
$router
|
#
|
protected
|
array
|
$attributes = []
|
#
|
protected
|
string[]
|
$passthru = ['get', 'post', 'put', 'patch', 'delete', 'options', 'any']
|
#
|
protected
|
string[]
|
$allowedAttributes = [
'as',
'can',
'controller',
'domain',
'middleware',
'missing',
'name',
'namespace',
'prefix',
'scopeBindings',
'where',
'withoutMiddleware',
'withoutScopedBindings',
]
|
#
|
protected
|
array
|
$aliases = [
'name' => 'as',
'scopeBindings' => 'scope_bindings',
'withoutScopedBindings' => 'scope_bindings',
'withoutMiddleware' => 'excluded_middleware',
]
|
#
|