TwoFactorLoginRequest
class TwoFactorLoginRequest extends FormRequest
Traits
Provides default implementation of ValidatesWhenResolved contract.
Constants
| protected FORWARDED_PARAMS |
Forwarded-header parameter mapping. |
| protected TRUSTED_HEADERS |
Mapping of trusted-header bitmask flags to header names. |
Properties
| static protected array | $macros | The registered string macros. |
from Macroable |
| protected InputBag|null | $json | The decoded JSON content for the request. |
from Request |
| protected null|UploadedFile|UploadedFile[]> | $convertedFiles | All of the converted files for the request. |
from Request |
| protected Closure|null | $userResolver | The user resolver callback. |
from Request |
| protected Closure|null | $routeResolver | The route resolver callback. |
from Request |
| protected string|null | $cachedAcceptHeader | The cached "Accept" header value. |
from Request |
| protected string[] | $trustedProxiesValue | Trusted proxy IP addresses / CIDR ranges for the current request. |
from Request |
| protected int | $trustedHeaderSetValue | Bitmask of trusted forwarded-headers for the current request. |
from Request |
| protected string[] | $trustedHostPatternsValue | Compiled trusted-host regex patterns for the current request. |
from Request |
| protected string[] | $trustedHostsValue | Memoized cache of host strings that matched a trusted pattern. |
from Request |
| protected array<string, array> | $trustedValuesCacheValue | Memoized cache of parsed trusted-header values for this request. |
from Request |
| protected bool | $isHostValidValue | One-shot flag preventing duplicate "Suspicious Host" exceptions per request. |
from Request |
| protected bool | $isForwardedValidValue | One-shot flag preventing duplicate "ConflictingHeaders" exceptions per request. |
from Request |
| protected array | $casts | The inputs that should be cast. |
from HasCasts |
| protected array | $classCastCache | The inputs that have been cast using custom classes. |
from HasCasts |
| protected string|null | $dateFormat | The date format used by date and datetime casts. |
from HasCasts |
| static protected string[] | $primitiveCastTypes | The built-in, primitive cast types supported by Eloquent. |
from HasCasts |
| static protected array<class-string, array<string, mixed>> | $attributeConfiguration | The cached attribute configuration for each form request class. |
from FormRequest |
| protected Container | $container | The container instance. |
from FormRequest |
| protected Redirector | $redirector | The redirector instance. |
from FormRequest |
| protected string|null | $redirect | The URI to redirect to if validation fails. |
from FormRequest |
| protected string|null | $redirectRoute | The route to redirect to if validation fails. |
from FormRequest |
| protected string|null | $redirectAction | The controller action to redirect to if validation fails. |
from FormRequest |
| protected string | $errorBag | The key to be used for the view error bag. |
from FormRequest |
| protected bool | $stopOnFirstFailure | Indicates whether validation should stop after the first rule failure. |
from FormRequest |
| protected Validator|null | $validator | The validator instance. |
from FormRequest |
| protected null|array<string, array<int, array|object|string>> | $unfilteredValidationRules | The unfiltered validation rules for precognitive requests. |
from FormRequest |
| static protected bool | $globalFailOnUnknownFields | Indicates if unknown fields should be rejected for all form requests. |
from FormRequest |
| protected Authenticatable|null | $challengedUser | ||
| protected bool|null | $remember |
Methods
Filter the given array of rules into an array of rules that are included in precognitive headers.
Determine if the given attribute should be validated.
Determine if the request is attempting to be precognitive.
Determine if the current request probably expects a JSON response.
Determine if the current request is asking for JSON.
Determine if the current request is asking for Markdown.
Determine whether the current requests accepts a given content type.
Return the most suitable content type from the given array based on content negotiation.
Determine if the current request accepts any content type.
Determine if the given content types match.
Get the data format expected in the response.
Flash only some of the input to the session.
Flash only some of the input to the session.
Retrieve data from the instance.
Determine if the instance contains any of the given keys.
Apply the callback if the instance contains the given key.
Determine if the instance contains a non-empty value for the given key.
Determine if the instance contains an empty value for the given key.
Determine if the instance contains a non-empty value for any of the given keys.
Apply the callback if the instance contains a non-empty value for the given key.
Apply the callback if the instance contains a valid enum value for the given key.
Determine if the instance is missing a given key.
Apply the callback if the instance is missing the given key.
Determine if the given key is an empty string for "filled".
Retrieve data from the instance as a Stringable instance.
Retrieve data from the instance as a Stringable instance.
Retrieve data as a boolean value.
Retrieve data as an integer value.
Retrieve data as a float value.
Retrieve data clamped between min and max values.
Retrieve data from the instance as a Carbon instance.
Retrieve data from the instance as a CarbonInterval instance.
Retrieve data from the instance as an enum.
Retrieve data from the instance as an array of enums.
Determine if the given enum class is backed.
Normalize enum input to a strict backed value.
Resolve and cache the enum backing type for repeated lookups.
Retrieve data from the instance as an array.
Retrieve data from the instance as a collection.
Get a subset containing the provided keys with values from the instance data.
Get all of the data except for a specified array of items.
Retrieve a server variable from the request.
Retrieve a header from the request.
Retrieve an input item from the request.
Retrieve input from the request as a Fluent object instance.
Retrieve a query string item from the request.
Retrieve a request payload item from the request.
Retrieve a cookie from the request.
Convert the given array of Symfony UploadedFiles to custom Hypervel UploadedFiles.
Check that the given file is a valid file instance.
Retrieve a file from the request.
Retrieve a parameter item from a given source.
Apply the callback if the given "value" is (or resolves to) truthy.
Apply the callback if the given "value" is (or resolves to) falsy.
Mix another object into the class.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Initialize the request data.
Set the trusted proxies on the current request.
Get the trusted-header bitmask for the current request.
Set the trusted host patterns for the current request.
Get the full URL for the request with the added query string parameters.
Get the full URL for the request without the given query string parameters.
Get a segment from the URI (1 based index).
Determine if the current request URL and query string match a pattern.
Determine whether this request originated from a trusted proxy.
Merge new input into the request's input, but only when that key is missing from the request.
Get the JSON payload for the request.
Create a new request instance from the given request.
Create a Hypervel request from a Symfony instance.
No description
Reset the trusted-values cache and one-shot exception flags.
Return the real base URL without the trusted reverse proxy prefix.
Parse the trusted forwarded-header values for the requested type.
Normalize and filter trusted client IPs.
Validate a host string per Symfony's URL-spec rules.
Filter the given array of files, removing any empty values.
Set the default locale for the request instance.
Get the route handling the request.
No description
Get casted inputs from the request.
Cast all inputs based on the casts definition.
Cast a single input value.
Cast an input to a native PHP type.
Cast the given input using a custom cast class.
Cast the given input to an enum.
Cast the given input to a DataObject.
Get an enum case instance from a given class and value.
Determine whether an input should be cast to a native type.
Determine if the given key is cast using a custom class.
Determine if the given key is cast using a DataObject.
Resolve the custom caster class for a given key.
Parse the given caster class, removing any arguments.
Decode the given JSON back into an array or object.
Return a timestamp as DateTime object with time set to 00:00:00.
Determine if the given value is a standard date format.
Get the validator instance for the request.
Determine if the request passes the authorization check.
Build a fresh form request hydrated from the current request.
Determine if fields not present in rules should fail validation.
Get a validated input container for the validated input.
Get the validated data from the request.
Enable or disable unknown-field rejection globally for all form requests.
Determine if the user is authorized to make this request.
Get the validation rules that apply to the request.
Determine if the request has a valid two factor code.
Get the valid recovery code if one exists on the request.
Determine if there is a challenged user in the current session.
Get the user that is attempting the two factor challenge.
Determine if the user wanted to be remembered after login.
Details
in
CanBePrecognitive at line 14
array
filterPrecognitiveRules(array $rules)
Filter the given array of rules into an array of rules that are included in precognitive headers.
in
CanBePrecognitive at line 30
protected bool
shouldValidatePrecognitiveAttribute(string $attribute, array $validateOnly)
Determine if the given attribute should be validated.
in
CanBePrecognitive at line 46
bool
isAttemptingPrecognition()
Determine if the request is attempting to be precognitive.
in
CanBePrecognitive at line 54
bool
isPrecognitive()
Determine if the request is precognitive.
in
InteractsWithContentTypes at line 14
bool
isJson()
Determine if the request is sending JSON.
in
InteractsWithContentTypes at line 22
bool
expectsJson()
Determine if the current request probably expects a JSON response.
in
InteractsWithContentTypes at line 30
bool
wantsJson()
Determine if the current request is asking for JSON.
in
InteractsWithContentTypes at line 40
bool
wantsMarkdown()
Determine if the current request is asking for Markdown.
in
InteractsWithContentTypes at line 50
bool
accepts(string|array $contentTypes)
Determine whether the current requests accepts a given content type.
in
InteractsWithContentTypes at line 86
string|null
prefers(string|array $contentTypes)
Return the most suitable content type from the given array based on content negotiation.
in
InteractsWithContentTypes at line 124
bool
acceptsAnyContentType()
Determine if the current request accepts any content type.
in
InteractsWithContentTypes at line 136
bool
acceptsJson()
Determine whether a request accepts JSON.
in
InteractsWithContentTypes at line 144
bool
acceptsMarkdown()
Determine whether a request accepts Markdown.
in
InteractsWithContentTypes at line 152
bool
acceptsHtml()
Determine whether a request accepts HTML.
in
InteractsWithContentTypes at line 160
static bool
matchesType(string $actual, string $type)
Determine if the given content types match.
in
InteractsWithContentTypes at line 174
string
format(string $default = 'html')
Get the data format expected in the response.
in
InteractsWithFlashData at line 14
string|array|null
old(string|null $key = null, Model|string|array|null $default = null)
Retrieve an old input item.
in
InteractsWithFlashData at line 24
void
flash()
Flash the input for the current request to the session.
in
InteractsWithFlashData at line 32
void
flashOnly(mixed $keys)
Flash only some of the input to the session.
in
InteractsWithFlashData at line 42
void
flashExcept(mixed $keys)
Flash only some of the input to the session.
in
InteractsWithFlashData at line 52
void
flush()
Flush all of the old input from the session.
in
Dumpable at line 12
never
dd(mixed ...$args)
Dump the given arguments and terminate execution.
in
InteractsWithData at line 30
abstract array
all(mixed $keys = null)
Retrieve all data from the instance.
in
InteractsWithData at line 35
abstract protected mixed
data(string|null $key = null, mixed $default = null)
Retrieve data from the instance.
in
InteractsWithData at line 40
bool
exists(array|string $key)
Determine if the data contains a given key.
in
InteractsWithData at line 48
bool
has(array|string $key)
Determine if the data contains a given key.
in
InteractsWithData at line 66
bool
hasAny(array|string $keys)
Determine if the instance contains any of the given keys.
in
InteractsWithData at line 80
mixed
whenHas(string $key, callable $callback, callable|null $default = null)
Apply the callback if the instance contains the given key.
in
InteractsWithData at line 96
bool
filled(array|string $key)
Determine if the instance contains a non-empty value for the given key.
in
InteractsWithData at line 112
bool
isNotFilled(array|string $key)
Determine if the instance contains an empty value for the given key.
in
InteractsWithData at line 128
bool
anyFilled(array|string $keys)
Determine if the instance contains a non-empty value for any of the given keys.
in
InteractsWithData at line 146
mixed
whenFilled(string $key, callable $callback, callable|null $default = null)
Apply the callback if the instance contains a non-empty value for the given key.
in
InteractsWithData at line 168
mixed
whenEnum(string $key, string $enumClass, callable $callback, callable|null $default = null)
Apply the callback if the instance contains a valid enum value for the given key.
in
InteractsWithData at line 188
bool
missing(array|string $key)
Determine if the instance is missing a given key.
in
InteractsWithData at line 198
mixed
whenMissing(string $key, callable $callback, callable|null $default = null)
Apply the callback if the instance is missing the given key.
in
InteractsWithData at line 214
protected bool
isEmptyString(string $key)
Determine if the given key is an empty string for "filled".
in
InteractsWithData at line 224
Stringable
str(string $key, mixed $default = null)
Retrieve data from the instance as a Stringable instance.
in
InteractsWithData at line 232
Stringable
string(string $key, mixed $default = null)
Retrieve data from the instance as a Stringable instance.
in
InteractsWithData at line 242
bool
boolean(string|null $key = null, bool $default = false)
Retrieve data as a boolean value.
Returns true when value is "1", "true", "on", and "yes". Otherwise, returns false.
in
InteractsWithData at line 250
int
integer(string $key, int $default = 0)
Retrieve data as an integer value.
in
InteractsWithData at line 258
float
float(string $key, float $default = 0.0)
Retrieve data as a float value.
in
InteractsWithData at line 266
int|float
clamp(string $key, int|float $min, int|float $max, int|float $default = 0)
Retrieve data clamped between min and max values.
in
InteractsWithData at line 283
CarbonInterface|null
date(string $key, string|null $format = null, UnitEnum|string|null $tz = null)
Retrieve data from the instance as a Carbon instance.
in
InteractsWithData at line 301
CarbonInterval|null
interval(string $key, Unit|string|null $unit = null)
Retrieve data from the instance as a CarbonInterval instance.
in
InteractsWithData at line 327
mixed
enum(string $key, string $enumClass, mixed $default = null)
Retrieve data from the instance as an enum.
in
InteractsWithData at line 350
array
enums(string $key, string $enumClass)
Retrieve data from the instance as an array of enums.
in
InteractsWithData at line 369
protected bool
isBackedEnum(string $enumClass)
Determine if the given enum class is backed.
in
InteractsWithData at line 377
protected int|string|null
normalizeEnumValue(string $enumClass, mixed $value)
Normalize enum input to a strict backed value.
in
InteractsWithData at line 422
protected string|null
enumBackingType(string $enumClass)
Resolve and cache the enum backing type for repeated lookups.
in
InteractsWithData at line 433
array
array(array|string|null $key = null)
Retrieve data from the instance as an array.
in
InteractsWithData at line 441
Collection
collect(array|string|null $key = null)
Retrieve data from the instance as a collection.
in
InteractsWithData at line 451
array
only(mixed $keys)
Get a subset containing the provided keys with values from the instance data.
in
InteractsWithData at line 475
array
except(mixed $keys)
Get all of the data except for a specified array of items.
in
InteractsWithInput at line 23
string|array|int|float|null
server(string|null $key = null, string|array|int|float|null $default = null)
Retrieve a server variable from the request.
in
InteractsWithInput at line 31
bool
hasHeader(string $key)
Determine if a header is set on the request.
in
InteractsWithInput at line 39
string|array|null
header(string|null $key = null, string|array|null $default = null)
Retrieve a header from the request.
in
InteractsWithInput at line 47
string|null
bearerToken()
Get the bearer token from the request headers.
in
InteractsWithInput at line 65
array
keys()
Get the keys for all of the input and files.
in
InteractsWithInput at line 93
mixed
input(string|null $key = null, mixed $default = null)
Retrieve an input item from the request.
in
InteractsWithInput at line 105
Fluent
fluent(array|string|null $key = null, array $default = [])
Retrieve input from the request as a Fluent object instance.
in
InteractsWithInput at line 115
string|array|null
query(string|null $key = null, string|array|null $default = null)
Retrieve a query string item from the request.
in
InteractsWithInput at line 123
string|array|null
post(string|null $key = null, string|array|null $default = null)
Retrieve a request payload item from the request.
in
InteractsWithInput at line 131
bool
hasCookie(string $key)
Determine if a cookie is set on the request.
in
InteractsWithInput at line 139
string|array|null
cookie(string|null $key = null, string|array|null $default = null)
Retrieve a cookie from the request.
in
InteractsWithInput at line 149
array
allFiles()
Get an array of all of the files on the request.
in
InteractsWithInput at line 162
protected array
convertUploadedFiles(array $files)
Convert the given array of Symfony UploadedFiles to custom Hypervel UploadedFiles.
in
InteractsWithInput at line 178
bool
hasFile(string $key)
Determine if the uploaded data contains a file.
in
InteractsWithInput at line 196
protected bool
isValidFile(mixed $file)
Check that the given file is a valid file instance.
in
InteractsWithInput at line 206
UploadedFile|array|null
file(string|null $key = null, mixed $default = null)
Retrieve a file from the request.
in
InteractsWithInput at line 222
protected string|array|int|float|null
retrieveItem(string $source, string|null $key, string|array|int|float|null $default)
Retrieve a parameter item from a given source.
in
Conditionable at line 23
mixed
when(mixed $value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) truthy.
in
Conditionable at line 56
mixed
unless(mixed $value = null, callable|null $callback = null, callable|null $default = null)
Apply the callback if the given "value" is (or resolves to) falsy.
in
Macroable at line 28
static void
macro(string $name, callable|object $macro)
Register a custom macro.
Boot-only. Macros persist in a static property for the worker lifetime and apply to every subsequent call on the macroable class.
in
Macroable at line 41
static void
mixin(object $mixin, bool $replace = true)
Mix another object into the class.
Boot-only. Delegates to macro() for each method; registered macros persist in a static property for the worker lifetime.
in
Macroable at line 57
static bool
hasMacro(string $name)
Check if macro is registered.
in
Macroable at line 68
static void
flushMacros()
Flush the existing macros.
Boot or tests only. Clears worker-wide macros; concurrent coroutines may resolve different methods depending on timing.
in
Macroable at line 78
static mixed
__callStatic(string $method, array $parameters)
Dynamically handle calls to the class.
in
Macroable at line 103
mixed
__call(string $method, array $parameters)
Dynamically handle calls to the class.
in
Request at line 145
void
initialize(array $query = [], array $request = [], array $attributes = [], array $cookies = [], array $files = [], array $server = [], $content = null)
Initialize the request data.
in
Request at line 162
static Request
createFromGlobals()
Create a new HTTP request from PHP superglobals.
in
Request at line 170
static void
setTrustedProxies(array $proxies, int $trustedHeaderSet)
Set the trusted proxies on the current request.
in
Request at line 205
static array
getTrustedProxies()
Get the trusted proxies for the current request.
in
Request at line 215
static int
getTrustedHeaderSet()
Get the trusted-header bitmask for the current request.
in
Request at line 225
static void
setTrustedHosts(array $hostPatterns)
Set the trusted host patterns for the current request.
in
Request at line 246
static array
getTrustedHosts()
Get the trusted host patterns for the current request.
in
Request at line 266
string
method()
Get the request method.
in
Request at line 282
string
root()
Get the root URL for the application.
in
Request at line 290
string
url()
Get the URL (no query string) for the request.
in
Request at line 298
string
fullUrl()
Get the full URL for the request.
in
Request at line 310
string
fullUrlWithQuery(array $query)
Get the full URL for the request with the added query string parameters.
in
Request at line 322
string
fullUrlWithoutQuery(array|string $keys)
Get the full URL for the request without the given query string parameters.
in
Request at line 336
string
path()
Get the current path info for the request.
in
Request at line 346
string
decodedPath()
Get the current decoded path info for the request.
in
Request at line 354
string|null
segment(int $index, string|null $default = null)
Get a segment from the URI (1 based index).
in
Request at line 362
array
segments()
Get all of the segments for the request path.
in
Request at line 374
bool
is(mixed ...$patterns)
Determine if the current request URI matches a pattern.
in
Request at line 383
bool
routeIs(mixed ...$patterns)
Determine if the route name matches a given pattern.
in
Request at line 391
bool
fullUrlIs(mixed ...$patterns)
Determine if the current request URL and query string match a pattern.
in
Request at line 400
string
host()
Get the host name.
in
Request at line 408
string
httpHost()
Get the HTTP host being requested.
in
Request at line 416
string
schemeAndHttpHost()
Get the scheme and HTTP host.
in
Request at line 424
bool
ajax()
Determine if the request is the result of an AJAX call.
in
Request at line 432
bool
pjax()
Determine if the request is the result of a PJAX call.
in
Request at line 440
bool
prefetch()
Determine if the request is the result of a prefetch call.
in
Request at line 450
bool
secure()
Determine if the request is over HTTPS.
in
Request at line 458
string|null
ip()
Get the client IP address.
in
Request at line 466
array
ips()
Get the client IP addresses.
in
Request at line 474
array
getClientIps()
Get the client IP addresses.
in
Request at line 489
string
getBaseUrl()
Return the root URL from which this request is executed.
in
Request at line 505
int|string|null
getPort()
Return the port on which the request is made.
in
Request at line 532
bool
isSecure()
Determine whether the request is secure.
in
Request at line 548
string
getHost()
Return the host name.
in
Request at line 595
bool
isFromTrustedProxy()
Determine whether this request originated from a trusted proxy.
in
Request at line 605
string|null
userAgent()
Get the client user agent.
in
Request at line 610
array
getAcceptableContentTypes()
No description
in
Request at line 629
Request
merge(array $input)
Merge new input into the current request's input array.
in
Request at line 645
Request
mergeIfMissing(array $input)
Merge new input into the request's input, but only when that key is missing from the request.
in
Request at line 659
Request
replace(array $input)
Replace the input values for the current request.
in
Request at line 674
mixed
json(string|null $key = null, mixed $default = null)
Get the JSON payload for the request.
in
Request at line 690
protected InputBag
getInputSource()
Get the input source for the request.
in
Request at line 702
static Request
createFrom(Request $from, Request|null $to = null)
Create a new request instance from the given request.
in
Request at line 743
static Request
createFromBase(Request $request)
Create a Hypervel request from a Symfony instance.
in
Request at line 769
Request
duplicate(array|null $query = null, array|null $request = null, array|null $attributes = null, array|null $cookies = null, array|null $files = null, array|null $server = null)
No description
in
Request at line 778
__clone()
Clone the current request.
in
Request at line 791
protected void
copyTrustedStateFrom(Request $from)
Copy trusted request configuration from another request.
in
Request at line 806
protected void
resetTrustedRequestCaches()
Reset the trusted-values cache and one-shot exception flags.
in
Request at line 816
protected string
getBaseUrlReal()
Return the real base URL without the trusted reverse proxy prefix.
in
Request at line 826
protected array
getTrustedValues(int $type, string|null $ip = null)
Parse the trusted forwarded-header values for the requested type.
in
Request at line 903
protected array
normalizeAndFilterClientIps(array $clientIps, string $ip)
Normalize and filter trusted client IPs.
in
Request at line 941
static protected bool
isHostValid(string $host)
Validate a host string per Symfony's URL-spec rules.
in
Request at line 958
protected mixed
filterFiles(mixed $files)
Filter the given array of files, removing any empty values.
in
Request at line 980
bool
hasSession(bool $skipIfUninitialized = false)
No description
in
Request at line 986
SessionInterface
getSession()
No description
in
Request at line 1015
void
setHypervelSession(Session $session)
Set the session instance on the request.
in
Request at line 1023
void
setRequestLocale(string $locale)
Set the locale for the request instance.
in
Request at line 1031
void
setDefaultRequestLocale(string $locale)
Set the default locale for the request instance.
in
Request at line 1039
mixed
user(string|null $guard = null)
Get the user making the request.
in
Request at line 1049
mixed
route(string|null $param = null, mixed $default = null)
Get the route handling the request.
in
Request at line 1072
string
fingerprint()
Get a unique fingerprint for the request / route / IP address.
in
Request at line 1131
Request
setRouteResolver(Closure $callback)
Set the route resolver callback.
in
Request at line 1141
array
toArray()
Get all of the input and files for the request.
in
Request at line 1149
bool
offsetExists(mixed $offset)
Determine if the given offset exists.
in
Request at line 1162
mixed
offsetGet(mixed $offset)
Get the value at the given offset.
in
Request at line 1170
void
offsetSet(mixed $offset, mixed $value)
Set the value at the given offset.
in
Request at line 1178
void
offsetUnset(mixed $offset)
Remove the value at the given offset.
in
FormRequest at line 458
static void
flushState()
Flush all static state.
in
Request at line 1200
bool
__isset(string $key)
Check if an input element is set on the request.
in
Request at line 1208
mixed
__get(string $key)
Get an input element from the request.
in
Request at line 38
array
validate(array $rules, mixed ...$params)
No description
in
Request at line 38
array
validateWithBag(string $errorBag, array $rules, mixed ...$params)
No description
in
Request at line 38
bool
hasValidSignature(bool $absolute = 'true')
No description
in
Request at line 38
bool
hasValidRelativeSignature()
No description
in
Request at line 38
bool
hasValidSignatureWhileIgnoring(mixed $ignoreQuery = '[]', mixed $absolute = 'true')
No description
in
Request at line 38
bool
hasValidRelativeSignatureWhileIgnoring(mixed $ignoreQuery = '[]')
No description
in
Request at line 38
bool
inertia()
Registered as a macro by Hypervel\Inertia\InertiaServiceProvider.
in
HasCasts at line 67
mixed
casted(array|string|null $key = null, bool $validate = true)
Get casted inputs from the request.
in
HasCasts at line 90
protected array
castInputs(array $inputs, bool $validate = true)
Cast all inputs based on the casts definition.
in
HasCasts at line 104
protected mixed
castInputValue(string $key, mixed $value, bool $validate = true)
Cast a single input value.
in
HasCasts at line 116
protected mixed
castInput(string $key, mixed $value, bool $validate = true)
Cast an input to a native PHP type.
in
HasCasts at line 177
protected mixed
getClassCastableInputValue(string $key, mixed $value, bool $validate = true)
Cast the given input using a custom cast class.
in
HasCasts at line 200
protected mixed
getEnumCastableInputValue(string $key, mixed $value)
Cast the given input to an enum.
in
HasCasts at line 218
mixed
getDataObjectCastableInputValue(string $key, mixed $value)
Cast the given input to a DataObject.
in
HasCasts at line 243
protected UnitEnum
getEnumCaseFromValue(string $enumClass, int|string $value)
Get an enum case instance from a given class and value.
in
HasCasts at line 253
bool
hasCast(string $key, mixed $types = null)
Determine whether an input should be cast to a native type.
in
HasCasts at line 265
array
getCasts()
Get the casts array.
in
HasCasts at line 273
protected array
casts()
No description
in
HasCasts at line 281
protected string
getCastType(string $key)
Get the type of cast for an input.
in
HasCasts at line 289
protected bool
isClassCastable(string $key)
Determine if the given key is cast using a custom class.
in
HasCasts at line 313
protected bool
isEnumCastable(string $key)
Determine if the given key is cast using an enum.
in
HasCasts at line 333
bool
isDataObjectCastable(string $key)
Determine if the given key is cast using a DataObject.
in
HasCasts at line 353
protected CastInputs
resolveCasterClass(string $key)
Resolve the custom caster class for a given key.
in
HasCasts at line 379
protected string
parseCasterClass(string $class)
Parse the given caster class, removing any arguments.
in
HasCasts at line 387
fromJson(string $value, bool $asObject = false)
Decode the given JSON back into an array or object.
in
HasCasts at line 395
float
fromFloat(mixed $value)
Decode the given float.
in
HasCasts at line 410
mixed
fromDateTime(mixed $value)
Convert a DateTime to a storable string.
in
HasCasts at line 420
string
getDateFormat()
Get the format for database stored dates.
in
HasCasts at line 428
protected false|string
asJson(mixed $value)
Encode the given value as JSON.
in
HasCasts at line 439
protected string
asDecimal(mixed $value, mixed $decimals)
Return a decimal as string.
in
HasCasts at line 447
protected CarbonInterface
asDate(mixed $value)
Return a timestamp as DateTime object with time set to 00:00:00.
in
HasCasts at line 455
protected CarbonInterface
asDateTime(mixed $value)
Return a timestamp as DateTime object.
in
HasCasts at line 506
protected bool|int
isStandardDateFormat(mixed $value)
Determine if the given value is a standard date format.
in
HasCasts at line 514
protected false|int
asTimestamp(mixed $value)
Return a timestamp as unix timestamp.
in
ValidatesWhenResolvedTrait at line 18
void
validateResolved()
Validate the class instance.
in
ValidatesWhenResolvedTrait at line 42
protected void
prepareForValidation()
Prepare the data for validation.
in
ValidatesWhenResolvedTrait at line 49
protected Validator
getValidatorInstance()
Get the validator instance for the request.
in
ValidatesWhenResolvedTrait at line 57
protected void
passedValidation()
Handle a passed validation attempt.
in
ValidatesWhenResolvedTrait at line 66
protected void
failedValidation(Validator $validator)
Handle a failed validation attempt.
in
ValidatesWhenResolvedTrait at line 76
protected bool|Response
passesAuthorization()
Determine if the request passes the authorization check.
in
ValidatesWhenResolvedTrait at line 90
protected void
failedAuthorization()
Handle a failed authorization attempt.
in
FormRequest at line 98
static static
newInstance(Request $current, Container $container, Redirector $redirector)
Build a fresh form request hydrated from the current request.
Invoked by the container's SelfBuilding path. Each resolution returns a new instance so per-request data does not leak across the worker.
in
FormRequest at line 149
protected void
configureFromAttributes()
Configure the form request from class attributes.
in
FormRequest at line 211
protected Validator
createDefaultValidator(Factory $factory)
Create the default validator instance.
in
FormRequest at line 236
array
validationData()
Get data to be validated from the request.
in
FormRequest at line 244
protected array
validationRules()
Get the validation rules for this form request.
in
FormRequest at line 254
protected bool
shouldFailOnUnknownFields()
Determine if fields not present in rules should fail validation.
in
FormRequest at line 266
protected void
validateNoUnknownFields(Validator $validator)
Validate that no unknown fields were sent as input.
in
FormRequest at line 288
protected array
knownFields(Validator $validator)
Get the known input fields from the validator's effective rules.
in
FormRequest at line 333
protected string
getRedirectUrl()
Get the URL to redirect to on a validation error.
in
FormRequest at line 379
array|ValidatedInput
safe(array|null $keys = null)
Get a validated input container for the validated input.
in
FormRequest at line 389
mixed
validated(array|int|string|null $key = null, mixed $default = null)
Get the validated data from the request.
in
FormRequest at line 399
array
messages()
Get custom messages for validator errors.
in
FormRequest at line 409
array
attributes()
Get custom attributes for validator errors.
in
FormRequest at line 420
static void
failOnUnknownFields(bool $value = true)
Enable or disable unknown-field rejection globally for all form requests.
Boot-only. The flag persists in a static property for the worker lifetime and applies to every subsequent request.
in
FormRequest at line 428
FormRequest
setValidator(Validator $validator)
Set the Validator instance.
in
FormRequest at line 438
FormRequest
setRedirector(Redirector $redirector)
Set the Redirector instance.
in
FormRequest at line 448
FormRequest
setContainer(Container $container)
Set the container implementation.
at line 29
bool
authorize()
Determine if the user is authorized to make this request.
at line 39
array
rules()
Get the validation rules that apply to the request.
at line 50
bool
hasValidCode()
Determine if the request has a valid two factor code.
at line 79
string|null
validRecoveryCode()
Get the valid recovery code if one exists on the request.
at line 100
bool
hasChallengedUser()
Determine if there is a challenged user in the current session.
at line 119
Authenticatable&Model
challengedUser()
Get the user that is attempting the two factor challenge.
at line 150
bool
remember()
Determine if the user wanted to be remembered after login.