Showing 10 of 129 results.

Updating the Favicon Driver | Favicon Configuration

If you've developed or installed a different favicon generation driver you will need to update the driver option within the site_essentials/favicons.php configuration file. Site Essentials for Statamic ships with an ImagickDriver by default. 1...

Overview | Validating Blade

This documentation page is intended for those looking to implement their own Blade validators, or are curious to learn more about the system. If you are interested in running existing validators against your Laravel project, consider reading the...

Registering Custom Validators | Validating Blade

It is not recommended to place custom validator implementations within the blade.validation.core_validators array. The core validators are initialized as singleton objects and have specific requirements for configuration. Instead, suppose you want...

getResults | Validating Blade

Returns a collection of node validation results. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getResults ( ) : Collection ;

getDocumentResults | Validating Blade

Returns a collection of document validation results. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocumentResults ( ) : Collection ;

withCoreValidators | Validating Blade

Adds all the core validator instances to the current BladeValidator instance. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ BladeValidator ; 4 5 public function withCoreValidators ( ) : BladeValidator ;

getValidatorCount | Validating Blade

Returns the total number of validator instances registered with BladeValidator instance. 1 <?php 2 3 public function getValidatorCount ( ) : int ;

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 ;

Filter Search