Request::expectsJson()

bool expectsJson() Determine if the current request probably expects a JSON response. Return Value bool

Request::exists()

bool exists(string|array $key) Determine if the request contains a given input item key. Parameters string|array $key Return Value bool

Request::except()

array except(array|mixed $keys) Get all of the input except for a specified array of items. Parameters array|mixed $keys Return Value array

Request::duplicate()

duplicate(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null) {@inheritdoc} Parameters array $query array $request array $attributes array $cookies array $files array $server

Request::decodedPath()

string decodedPath() Get the current encoded path info for the request. Return Value string

Request::createFromBase()

static Request createFromBase(Request $request) Create an Illuminate request from a Symfony instance. Parameters Request $request Return Value Request

Request::cookie()

string|array cookie(string $key = null, string|array|null $default = null) Retrieve a cookie from the request. Parameters string $key string|array|null $default Return Value string|array

Request::clearResolvedInstances()

static void clearResolvedInstances() Clear all of the resolved instances. Return Value void

Request::clearResolvedInstance()

static void clearResolvedInstance(string $name) Clear a resolved facade instance. Parameters string $name Return Value void

Request::capture()

static Request capture() Create a new Illuminate HTTP request from server variables. Return Value Request