Showing 10 of 1,089 results.

Laravel Collection Public API: implode

implode($value, $glue = null) The implode method will combine the items of the collection together. The Collection 's implode method behaves differently than PHP's implode function in that it can operate on arrays of primitive data types as well...

Laravel Collection Public API: flatten

flatten The flatten method will return a new Collection instance representing a flattened version of the original collection's items. The flatten method internally makes use of the Illuminate\Support\Arr::flatten($array) helper method. The flatten...

The Base Node | Parser Nodes Overview

…source document and starts at zero., id, : Each node is assigned an arbitrary, random identifier when constructed., content, : Each node stores some content. The exact value of this member will vary depending on the node type. In addition to the...

PHP Tag Nodes | Parser Nodes Overview

…gs within a Blade template. Each PhpTagNode node is categorized in one of two ways: PhpOpenTag, : Indicates the PHP tag started with the, <?php, tag., PhpOpenTagWithEcho, : Indicates the PHP tag started with the, <?=, tag. If either tag type is...

Verbatim Nodes | Parser Nodes Overview

The @verbatim and @endverbatim pair is represented by the Stillat\BladeParser\Nodes\VerbatimNode . This structure type is handled internally within the parser, and the library ignores any improper usage of the @verbatim or @endverbatim directives...

Laravel 5: View Error Bags

…lity is facilitated by the "Illuminate\View\Middleware \ShareErrorsFromSession" middleware. The ViewErrorBag instance that is shared with views is given the name errors . Interacting with the ViewErrorBag instance should look familiar to most...

Filter Search