Showing 10 of 2,044 results.

Laravel 5 Facades

…enient way to access Laravel's components. Each facade is bound to some component already registered in the service container. Facades are typically used to provide a simpler interface to an complex underlying subsystem. While some facades...

The "thread" Filters

…ages, collection entries, etc. The thread filters are not universally supported by all Antlers tags. For example, the {{ meerkat:responses }} tag always operates on the current page context.The thread:in filter allows you to filter comments to...

Laravel Application Helper: response

…upplied to the response function, an implementation of Illuminate\Contracts\Routing\ResponseFactory will be returned (by default this is an instance of Illuminate\Routing\ResponseFactory ). The following example demonstrates some of the different...

Pascal Case | Laravel 5.5 String Helper Function: studly

Laravel's studly method can also be used to generate Pascal Cased style strings. Both styles are the same as camel case with the first letter capitalized. Because the studly method does not affect the case of any letters after the first letter, we...

Configuring the Compiler | Blade Compiler

The provided compiler implementation works to be independent of the core compiler in many ways. As such, it needs to be taught about components such as namespaces, aliases, custom conditions or directives, etc.

Laravel MessageBag Public API: first

first($key = null, $format = null) The first method will return the first message in the MessageBag instance for a given $key . If the $key is null the first method will return the first message in the MessageBag instance. If there are no messages...

Laravel 5: String Translation Public API

…cessing of language files. The Translator class internally contains an implementation of Illuminate\Contracts\Translation\Loader , which is an instance of Illuminate\Translation\FileLoader by default. The following explanations of the various API...