Methods |
public
|
whereAlpha(array|string $parameters): $this
Specify that the given route parameters must be alphabetic.
Specify that the given route parameters must be alphabetic.
|
#
|
public
|
whereAlphaNumeric(array|string $parameters): $this
Specify that the given route parameters must be alphanumeric.
Specify that the given route parameters must be alphanumeric.
|
#
|
public
|
whereNumber(array|string $parameters): $this
Specify that the given route parameters must be numeric.
Specify that the given route parameters must be numeric.
|
#
|
public
|
whereUlid(array|string $parameters): $this
Specify that the given route parameters must be ULIDs.
Specify that the given route parameters must be ULIDs.
|
#
|
public
|
whereUuid(array|string $parameters): $this
Specify that the given route parameters must be UUIDs.
Specify that the given route parameters must be UUIDs.
|
#
|
public
|
whereIn(array|string $parameters, array $values): $this
Specify that the given route parameters must be one of the given values.
Specify that the given route parameters must be one of the given values.
|
#
|
protected
|
assignExpressionToParameters(array|string $parameters, string $expression): $this
Apply the given regular expression to the given parameters.
Apply the given regular expression to the given parameters.
|
#
|