Methods |
public
|
server(string|null $key = null, string|array|null $default = null): string|array|null
Retrieve a server variable from the request.
Retrieve a server variable from the request.
|
#
|
public
|
hasHeader(string $key): bool
Determine if a header is set on the request.
Determine if a header is set on the request.
|
#
|
public
|
header(string|null $key = null, string|array|null $default = null): string|array|null
Retrieve a header from the request.
Retrieve a header from the request.
|
#
|
public
|
bearerToken(): string|null
Get the bearer token from the request headers.
Get the bearer token from the request headers.
|
#
|
public
|
keys(): array
Get the keys for all of the input and files.
Get the keys for all of the input and files.
|
#
|
public
|
all(array|mixed|null $keys = null): array
Get all of the input and files for the request.
Get all of the input and files for the request.
|
#
|
public
|
input(string|null $key = null, mixed $default = null): mixed
Retrieve an input item from the request.
Retrieve an input item from the request.
|
#
|
public
|
fluent(array|string|null $key = null): Fluent
Retrieve input from the request as a Fluent object instance.
Retrieve input from the request as a Fluent object instance.
|
#
|
public
|
query(string|null $key = null, string|array|null $default = null): string|array|null
Retrieve a query string item from the request.
Retrieve a query string item from the request.
|
#
|
public
|
post(string|null $key = null, string|array|null $default = null): string|array|null
Retrieve a request payload item from the request.
Retrieve a request payload item from the request.
|
#
|
public
|
hasCookie(string $key): bool
Determine if a cookie is set on the request.
Determine if a cookie is set on the request.
|
#
|
public
|
cookie(string|null $key = null, string|array|null $default = null): string|array|null
Retrieve a cookie from the request.
Retrieve a cookie from the request.
|
#
|
public
|
allFiles(): array
Get an array of all of the files on the request.
Get an array of all of the files on the request.
|
#
|
protected
|
convertUploadedFiles(array $files): array
Convert the given array of Symfony UploadedFiles to custom Laravel UploadedFiles.
Convert the given array of Symfony UploadedFiles to custom Laravel UploadedFiles.
|
#
|
public
|
hasFile(string $key): bool
Determine if the uploaded data contains a file.
Determine if the uploaded data contains a file.
|
#
|
protected
|
isValidFile(mixed $file): bool
Check that the given file is a valid file instance.
Check that the given file is a valid file instance.
|
#
|
public
|
file(string|null $key = null, mixed $default = null): UploadedFile|UploadedFile[]|array|null
Retrieve a file from the request.
Retrieve a file from the request.
|
#
|
protected
|
data(string $key = null, mixed $default = null): mixed
Retrieve data from the instance.
Retrieve data from the instance.
|
#
|
protected
|
retrieveItem(string $source, string|null $key, string|array|null $default): string|array|null
Retrieve a parameter item from a given source.
Retrieve a parameter item from a given source.
|
#
|
public
|
dump(mixed $keys = []): $this
Dump the items.
|
#
|