Showing 10 of 2,133 results.

Laravel 5 Facades

Facades are a convenient 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...

get($key = null, $default = null) | Laravel 5 Facades

…od will get an item from the input data, such as when a user posts a form or an API request is being processed. The get method can be used for requests with the following HTTP verbs: GET, POST, PUT, DELETE The get method will invoke the input...

getValidators | Validating Blade

Returns a collection of all registered validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getValidators ( ) : Collection ;

hasValidatorInstance | Validating Blade

Tests if the BladeValidator instance contains the provided validator. Argument Description $validator The validator to check. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ AbstractNodeValidator ; 4 5 public function hasValidatorInstance ( 6...

hasDocumentValidatorInstance | Validating Blade

Tests if the BladeValidator instance contains the provided validator. Argument Description $validator The validator to check. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ AbstractDocumentValidator ; 4 5 public function...

validateNodes | Validating Blade

Runs all registered node validators against the provided node list. Argument Description $nodes The nodes to validate. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function validateNodes ( 6 array $ nodes 7 ) : Collection ;

getFirstFatalError | Validating Workspaces

Retrieves the first fatal error. If the error source contains multiple types of errors, such as parser errors and validation errors, all errors will be considered. Fatal errors are considered those that would produce invalid compiled PHP code,...

getExtensions | Blade Compiler

Get the extensions used by the compiler. Retrieves all extensions registered with the compiler via the extend method. 1 <?php 2 3 public function getExtensions ( ) : array ;