Methods |
public
|
__construct(ResourceRegistrar $registrar, string $name, string $controller, array $options): void
Create a new pending resource registration instance.
Create a new pending resource registration instance.
|
#
|
public
|
only(array|string|mixed $methods): PendingResourceRegistration
Set the methods the controller should apply to.
Set the methods the controller should apply to.
|
#
|
public
|
except(array|string|mixed $methods): PendingResourceRegistration
Set the methods the controller should exclude.
Set the methods the controller should exclude.
|
#
|
public
|
names(array|string $names): PendingResourceRegistration
Set the route names for controller actions.
Set the route names for controller actions.
|
#
|
public
|
name(string $method, string $name): PendingResourceRegistration
Set the route name for a controller action.
Set the route name for a controller action.
|
#
|
public
|
parameters(array|string $parameters): PendingResourceRegistration
Override the route parameter names.
Override the route parameter names.
|
#
|
public
|
parameter(string $previous, string $new): PendingResourceRegistration
Override a route parameter's name.
Override a route parameter's name.
|
#
|
public
|
middleware(mixed $middleware): PendingResourceRegistration
Add middleware to the resource routes.
Add middleware to the resource routes.
|
#
|
public
|
middlewareFor(array|string $methods, array|string $middleware): $this
Specify middleware that should be added to the specified resource routes.
Specify middleware that should be added to the specified resource routes.
|
#
|
public
|
withoutMiddleware(array|string $middleware): $this|array
Specify middleware that should be removed from the resource routes.
Specify middleware that should be removed from the resource routes.
|
#
|
public
|
withoutMiddlewareFor(array|string $methods, array|string $middleware): $this
Specify middleware that should be removed from the specified resource routes.
Specify middleware that should be removed from the specified resource routes.
|
#
|
public
|
where(mixed $wheres): PendingResourceRegistration
Add "where" constraints to the resource routes.
Add "where" constraints to the resource routes.
|
#
|
public
|
shallow(bool $shallow = true): PendingResourceRegistration
Indicate that the resource routes should have "shallow" nesting.
Indicate that the resource routes should have "shallow" nesting.
|
#
|
public
|
missing(callable $callback): $this
Define the callable that should be invoked on a missing model exception.
Define the callable that should be invoked on a missing model exception.
|
#
|
public
|
scoped(array $fields = []): PendingResourceRegistration
Indicate that the resource routes should be scoped using the given binding fields.
Indicate that the resource routes should be scoped using the given binding fields.
|
#
|
public
|
withTrashed(array $methods = []): PendingResourceRegistration
Define which routes should allow "trashed" models to be retrieved when resolving implicit model bindings.
Define which routes should allow "trashed" models to be retrieved when resolving implicit model bindings.
|
#
|
public
|
register(): RouteCollection
Register the resource route.
Register the resource route.
|
#
|
public
|
__destruct(): void
Handle the object's destruction.
Handle the object's destruction.
|
#
|