Methods |
public
static
|
capture(): static
Create a new Illuminate HTTP request from server variables.
Create a new Illuminate HTTP request from server variables.
|
#
|
public
|
instance(): $this
Return the Request instance.
Return the Request instance.
|
#
|
public
|
method(): string
Get the request method.
|
#
|
public
|
uri(): Uri
Get a URI instance for the request.
Get a URI instance for the request.
|
#
|
public
|
root(): string
Get the root URL for the application.
Get the root URL for the application.
|
#
|
public
|
url(): string
Get the URL (no query string) for the request.
Get the URL (no query string) for the request.
|
#
|
public
|
fullUrl(): string
Get the full URL for the request.
Get the full URL for the request.
|
#
|
public
|
fullUrlWithQuery(array $query): string
Get the full URL for the request with the added query string parameters.
Get the full URL for the request with the added query string parameters.
|
#
|
public
|
fullUrlWithoutQuery(array|string $keys): string
Get the full URL for the request without the given query string parameters.
Get the full URL for the request without the given query string parameters.
|
#
|
public
|
path(): string
Get the current path info for the request.
Get the current path info for the request.
|
#
|
public
|
decodedPath(): string
Get the current decoded path info for the request.
Get the current decoded path info for the request.
|
#
|
public
|
segment(int $index, string|null $default = null): string|null
Get a segment from the URI (1 based index).
Get a segment from the URI (1 based index).
|
#
|
public
|
segments(): array
Get all of the segments for the request path.
Get all of the segments for the request path.
|
#
|
public
|
is(mixed ...$patterns): bool
Determine if the current request URI matches a pattern.
Determine if the current request URI matches a pattern.
|
#
|
public
|
routeIs(mixed ...$patterns): bool
Determine if the route name matches a given pattern.
Determine if the route name matches a given pattern.
|
#
|
public
|
fullUrlIs(mixed ...$patterns): bool
Determine if the current request URL and query string match a pattern.
Determine if the current request URL and query string match a pattern.
|
#
|
public
|
host(): string
Get the host name.
|
#
|
public
|
httpHost(): string
Get the HTTP host being requested.
Get the HTTP host being requested.
|
#
|
public
|
schemeAndHttpHost(): string
Get the scheme and HTTP host.
Get the scheme and HTTP host.
|
#
|
public
|
ajax(): bool
Determine if the request is the result of an AJAX call.
Determine if the request is the result of an AJAX call.
|
#
|
public
|
pjax(): bool
Determine if the request is the result of a PJAX call.
Determine if the request is the result of a PJAX call.
|
#
|
public
|
prefetch(): bool
Determine if the request is the result of a prefetch call.
Determine if the request is the result of a prefetch call.
|
#
|
public
|
secure(): bool
Determine if the request is over HTTPS.
Determine if the request is over HTTPS.
|
#
|
public
|
ip(): string|null
Get the client IP address.
Get the client IP address.
|
#
|
public
|
ips(): array
Get the client IP addresses.
Get the client IP addresses.
|
#
|
public
|
userAgent(): string|null
Get the client user agent.
Get the client user agent.
|
#
|
public
|
merge(array $input): $this
Merge new input into the current request's input array.
Merge new input into the current request's input array.
|
#
|
public
|
mergeIfMissing(array $input): $this
Merge new input into the request's input, but only when that key is missing from the request.
Merge new input into the request's input, but only when that key is missing from the request.
|
#
|
public
|
replace(array $input): $this
Replace the input values for the current request.
Replace the input values for the current request.
|
#
|
public
|
get(string $key, mixed $default = null): mixed
This method belongs to Symfony HttpFoundation and is not usually needed when using Laravel.
This method belongs to Symfony HttpFoundation and is not usually needed when using Laravel.
Instead, you may use the "input" method.
|
#
|
public
|
json(string|null $key = null, mixed $default = null): InputBag|mixed
Get the JSON payload for the request.
Get the JSON payload for the request.
|
#
|
protected
|
getInputSource(): InputBag
Get the input source for the request.
Get the input source for the request.
|
#
|
public
static
|
createFrom(Request $from, Request|null $to = null): static
Create a new request instance from the given Laravel request.
Create a new request instance from the given Laravel request.
|
#
|
public
static
|
createFromBase(Request $request): static
Create an Illuminate request from a Symfony instance.
Create an Illuminate request from a Symfony instance.
|
#
|
public
|
duplicate(
?array $query = null,
?array $request = null,
?array $attributes = null,
?array $cookies = null,
?array $files = null,
?array $server = null,
): static
{@inheritdoc}
Parameters
$query |
The GET parameters
|
$request |
The POST parameters
|
$attributes |
The request attributes (parameters parsed from the PATH_INFO, ...)
|
$cookies |
The COOKIE parameters
|
$files |
The FILES parameters
|
$server |
The SERVER parameters
|
Overrides
|
#
|
protected
|
filterFiles(mixed $files): mixed
Filter the given array of files, removing any empty values.
Filter the given array of files, removing any empty values.
|
#
|
public
|
hasSession(bool $skipIfUninitialized = false): bool
{@inheritdoc}
Parameters
$skipIfUninitialized |
When true, ignores factories injected by setSessionFactory
|
Overrides
|
#
|
public
|
getSession(): SessionInterface
{@inheritdoc}
|
#
|
public
|
session(): Session
Get the session associated with the request.
Get the session associated with the request.
Throws
|
#
|
public
|
setLaravelSession(Session $session): void
Set the session instance on the request.
Set the session instance on the request.
|
#
|
public
|
setRequestLocale(string $locale): void
Set the locale for the request instance.
Set the locale for the request instance.
|
#
|
public
|
setDefaultRequestLocale(string $locale): void
Set the default locale for the request instance.
Set the default locale for the request instance.
|
#
|
public
|
user(string|null $guard = null): mixed
Get the user making the request.
Get the user making the request.
|
#
|
public
|
route(string|null $param = null, mixed $default = null): Route|object|string|null
Get the route handling the request.
Get the route handling the request.
|
#
|
public
|
fingerprint(): string
Get a unique fingerprint for the request / route / IP address.
Get a unique fingerprint for the request / route / IP address.
Throws
|
#
|
public
|
setJson(InputBag $json): $this
Set the JSON payload for the request.
Set the JSON payload for the request.
|
#
|
public
|
getUserResolver(): Closure
Get the user resolver callback.
Get the user resolver callback.
|
#
|
public
|
setUserResolver(Closure $callback): $this
Set the user resolver callback.
Set the user resolver callback.
|
#
|
public
|
getRouteResolver(): Closure
Get the route resolver callback.
Get the route resolver callback.
|
#
|
public
|
setRouteResolver(Closure $callback): $this
Set the route resolver callback.
Set the route resolver callback.
|
#
|
public
|
toArray(): array
Get all of the input and files for the request.
Get all of the input and files for the request.
Overrides
Implements
|
#
|
public
|
offsetExists(string $offset): bool
Determine if the given offset exists.
Determine if the given offset exists.
Implements
|
#
|
public
|
offsetGet(string $offset): mixed
Get the value at the given offset.
Get the value at the given offset.
Implements
|
#
|
public
|
offsetSet(string $offset, mixed $value): void
Set the value at the given offset.
Set the value at the given offset.
Implements
|
#
|
public
|
offsetUnset(string $offset): void
Remove the value at the given offset.
Remove the value at the given offset.
Implements
|
#
|
public
|
__isset(string $key): bool
Check if an input element is set on the request.
Check if an input element is set on the request.
|
#
|
public
|
__get(string $key): mixed
Get an input element from the request.
Get an input element from the request.
|
#
|
public
|
validate(array $rules, ...$params): array
|
#
|
public
|
validateWithBag(string $errorBag, array $rules, ...$params): array
|
#
|
public
|
hasValidSignature(bool $absolute = true): bool
|
#
|