Showing 10 of 2,055 results.

Laravel ViewErrorBag Public API: put

put($key, Illuminate\Contracts\Support\MessageBag $bag) The put method is used to add a new MessageBag implementation instance to the ViewErrorBag instance, supplied as the argument to the $bag parameter with some name determined by the $key...

validate | Validating Documents

Validates the document with the internal BladeValidator instance. After validation is complete, any produced validation errors will be available through the getErrors() method, as well as the getValidationErrors() method to retrieve only the...

Laravel Artisan Cache Command: The cache:table Command

The cache:table command is used to create a new migration for the cache database table. This table is required to use the database cache driver. This command defines no parameters and can be used like so: 1 php artisan cache:table The migration...

Heading Thresholds and Ignoring Headers | Index Configuration

The documentation search provider offers a few extra configuration options that will help control how content is indexed: header_threshold, : The number of headers that must appear within an entry's content before it can be split into multiple...

Laravel 5: Accessing Validation Features With validator

…tor function (all arguments are optional), the function will return a Illuminate\Contracts\Validation\Factory implementation instance (the default implementation will be an instance of Illuminate\Validation\Factory ). Using the validator function...