Showing 10 of 1,204 results.

withCoreValidators | Validating Workspaces

…tically via the ValidatorFactory::makeBladeValidator() factory method. Under a typical installation environment, this will load the validators that are configured under the config path: blade.validation.core_validators 1 <?php 2 3 use Stillat \...

validator | Validating Workspaces

Returns access to an internal BladeValidator instance. If a validator instance does not already exist, one will be automatically created by calling the ValidatorFactory::makeBladeValidator() method. 1 <?php 2 3 use Stillat \ BladeParser \...

withValidators | Validating Workspaces

Adds a list of validator instances to the internal BladeValidator instance. Argument Description $validators The validator instances. 1 <?php 2 3 use Stillat \ BladeParser \ Workspaces \ Workspace ; 4 5 public function withValidators ( 6 array $...

Replacing the Core Blade Compiler | Blade Compiler

Replacing the core Laravel Blade compiler entirely is not recommended, mainly due to the high likelihood of undesirable/unpredictable behavior when interacting with third-party libraries and Laravel itself. The main issues likely to arise are...

Default Configuration | Blade Compiler

…only applies if you are looking to manually construct a compiler instance. By default, the compiler factory and service bindings will keep the compiler instances in sync with the Laravel compiler. Internally this accomplished using the...

setCompileCoreComponents | Blade Compiler

…mponent tags. When set to false, the internal component tag compiler will not compile Laravel component tags (<x-, <x:, etc.). Argument Description $compileCoreComponents Whether to compile core Laravel component tags. 1 <?php 2 3 use Stillat \...

setExtensions | Blade Compiler

…hat had been previously registered with the extend method. In default setups, this is set to the return value of Illuminate\View\Compilers\BladeCompiler::getExtensions() Argument Description $extensions The extensions. 1 <?php 2 3 use Stillat \...

setAnonymousComponentNamespaces | Blade Compiler

…component namespaces. In default setups, this is set to the return value of Illuminate\View\Compilers\BladeCompiler::getAnonymousComponentNamespaces() Argument Description $anonymousNamespaces The anonymous namespaces. 1 <?php 2 3 use Stillat \...

setClassComponentAliases | Blade Compiler

…verrides all class component aliases. In default setups, this is set to the return value of Illuminate\View\Compilers\BladeCompiler::getClassComponentAliases() Argument Description $aliases The class component aliases. 1 <?php 2 3 use Stillat \...

Filter Search