Showing 10 of 2,055 results.

12. No Surrender of Others' Freedom. | License

…satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying...

Laravel 5.5 String Helper Function: studly

Studly caps is a way of formatting text with capital letters, according to some pattern. Laravel's pattern is to remove the following word separators and capitalize the first letter of each word it finds (while not affecting the case of any other...

Laravel Array Helper Function: array_set

set(&$array, $key, $value) The set helper method is the logical opposite of the forget (discussed in the Laravel Array Helper Function: array_forget article) method. its purpose is to set values within an array. The set method also uses dot...

Learning More | Configuring the Blueprint

Statamic's blueprint system is pretty expansive; it is highly recommended that you review their documentation of the feature by visiting https://statamic.dev/blueprints .

Error Types | Parser Errors

There are a variety of specific error types, each encoding a unique scenario: Error Type Code Unknown 000 Unexpected End of Input 001 Unexpected Echo 002 Unexpected Raw Echo 003 Unexpected Triple Echo 004 Unexpected Comment 005 Unexpected...

12. No Surrender of Others' Freedom. | License

…satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying...

Configuration Overview

Social Media Kit offers many different configuration options, aimed at helping fine tune the installation to meet your projects needs. After installation, you should see the following configuration files within your site's...

Laravel Application Helper Function: event

…load = [], $halt = false) The event helper is a convenient way to dispatch a particular $event to its listeners. An optional $payload of data can also be supplied when dispatching the event. When the event is dispatched, all its listeners will be...

Laravel 5: Decrypting Strings With decrypt

The decrypt helper function can be used to decrypt the provided value. The function resolves the configured Illuminate\Contracts\Encryption\Encrypter implementation from the Service Container and then calls the decrypt method on the Encrypter...