Showing 10 of 2,133 results.

getNodeValidators | Validating Blade

Returns a collection containing only the registered node validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getNodeValidators ( ) : Collection ;

getDocumentValidators | Validating Blade

Returns a collection containing only the registered document validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocumentValidators ( ) : Collection ;

Laravel Array Helper Function: array_build

The $build helper method will create a new array with the original array's key/value pairs after they have been run through the $callback function. The $callback function should return an array with the new key and value. The signature for the...

getFirstError | Validating Documents

Retrieves the first error. If the error source contains multiple types of errors, such as parser errors and validation errors, all errors will be considered. 1 <?php 2 3 use Stillat \ BladeParser \ Errors \ BladeError ; 4 5 public function...

getAllStructures | Document Structures

Returns all the document structures. This method automatically performs structural analysis on the document. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllStructures ( ) : Collection ; Example Use 1 <?php 2 3 use...

Component Parameter Parsing | Core Concepts

The component tag parser provided by the library accepts arbitrary whitespace between parameter names and their value, provided the value is enclosed within quotes: 1 < x-alert 2 message 3 = " The message contents " /> While the parser supports...