Showing 10 of 2,055 results.

Laravel String Helper Function: lower

The lower helper method takes a given value and returns a lower cased variant. The signature for the lower helper function is: lower($value) 1 use Illuminate \ Support \ Str ; 2 3 // all lower cased 4 echo Str :: lower ( ' ALL LOWER CASED ' ) ;

Parser Nodes Overview

The document parser returns a list of nodes as a result of parsing. There are many different types available, depending on the input template. The most basic node type is the LiteralNode , representing the template's non-Blade parts. If an input...

Comment Nodes | Parser Nodes Overview

The parser will emit Stillat\BladeParser\Nodes\CommentNode instances when it successfully parses a Blade comment. If a comment is not completed, the start of the comment will become part of a LiteralNode instance. The following sample document...

Laravel Application Helper: app

app($make = null, $parameters = []) The app function provides access to the Illuminate\Container\Container instance. Because Container is a singleton, any call to app() will return the same Container instance. The app function can also be used to...

Third-Party Data Sharing | Product Data Privacy

By default, Meerkat does not share any information via. third-party API calls. Some features, such as the Akismet spam guard, do require the submission of data to third-parties via. API requests. These features are disabled by default and are...

Laravel Miscellaneous Helper Function: dd

dd() The dd function is a debug utility that will dump a set of values and then die. This means it will create a human-readable representation of the values and then stop execution of the script. The dd function will take into account if the...

Laravel URL Helper Function: secure_url

…ply additional data that will be added as a query string by supplying an argument for the $parameters parameter. The secure_url helper function internally returns the value of a call to the url (discussed in the Laravel URL Helper Function: url...

Laravel 5: Sorting Arrays With sort

The sort helper method will allow you to sort the given $array based on some condition returned by the $callback . The method works by iterating over all the values in the $array and passing the values it finds into the $callback function. It then...

Laravel Artisan: The Tinker Command

…products like Chrome's Developer Tools. To get started using Tinker, simply issue the tinker Artisan command in the root application directory: 1 # Start a Tinker session. 2 php artisan tinker If the Tinker session has started successfully, the...

Filter Search