Showing 7 of 1,216 result(s)
The has function will check if a cookie with the given $key exists for the current request.
The get function will retrieve a cookie from the current request with the given $key . A $default value can be supplied and will be returned if a cookie with the given $key does not exist.
The Input facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components.
The get method will get an item from the input data, such as when a user posts a form or an API request is being processed. The get method can be used for requests with the following HTTP verbs: GET, POST, PUT, DELETE The get method will invoke...
The Schema facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components.
The connection method will return a new schema builder ( Illuminate\Database\Schema\Builder ) instance for the given connection. The $name is the name of the connection as it appears in the database configuration file.
The get method will return the value associated with the provided $key . If the $key does not exist, the $default value will be returned (which is null by default). Retrieving values from a Fluent instance: The $default value is evaluated using...