Methods |
public
|
__construct(ResourceRegistrar $registrar, string $name, string $controller, array $options): void
Create a new pending singleton resource registration instance.
Create a new pending singleton resource registration instance.
|
#
|
public
|
only(array|string|mixed $methods): PendingSingletonResourceRegistration
Set the methods the controller should apply to.
Set the methods the controller should apply to.
|
#
|
public
|
except(array|string|mixed $methods): PendingSingletonResourceRegistration
Set the methods the controller should exclude.
Set the methods the controller should exclude.
|
#
|
public
|
creatable(): $this
Indicate that the resource should have creation and storage routes.
Indicate that the resource should have creation and storage routes.
|
#
|
public
|
destroyable(): $this
Indicate that the resource should have a deletion route.
Indicate that the resource should have a deletion route.
|
#
|
public
|
names(array|string $names): PendingSingletonResourceRegistration
Set the route names for controller actions.
Set the route names for controller actions.
|
#
|
public
|
name(string $method, string $name): PendingSingletonResourceRegistration
Set the route name for a controller action.
Set the route name for a controller action.
|
#
|
public
|
parameters(array|string $parameters): PendingSingletonResourceRegistration
Override the route parameter names.
Override the route parameter names.
|
#
|
public
|
parameter(string $previous, string $new): PendingSingletonResourceRegistration
Override a route parameter's name.
Override a route parameter's name.
|
#
|
public
|
middleware(mixed $middleware): PendingSingletonResourceRegistration
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): PendingSingletonResourceRegistration
Add "where" constraints to the resource routes.
Add "where" constraints to the resource routes.
|
#
|
public
|
register(): RouteCollection
Register the singleton resource route.
Register the singleton resource route.
|
#
|
public
|
__destruct(): void
Handle the object's destruction.
Handle the object's destruction.
|
#
|