Showing 7 of 2,041 result(s)
…ravel itself. The main issues likely to arise are subtle differences produced by any feature that directly type-hints Laravel's Illuminate\View\Compilers\BladeCompiler class. However, extreme efforts have been made to ensure the compiler...
Returns the configured precompilers. 1 <?php 2 3 public function getPrecompilers () : array ;
Returns all configured echo handlers. 1 <?php 2 3 public function getEchoHandlers () : array ;
The Blade Parser library provides many validation rules out of the box. You can learn more about each of them in the following sections.
Class : DirectiveSpacingValidator The directive spacing validator emits a validation error when a directive does not have sufficient leading or trailing whitespace. The following template: 1 < span class = " @if @endif " ></ span > produces the...
Class : DebugDirectiveValidator The debug directives validator emits a validation error if any debug directives appear within a template. The following template: 1 @dd ($args) would produce the following validation message: 1 Debug directive [@dd]...
Tests if the workspace contains any Blade directives. 1 <?php 2 3 public function hasAnyDirectives () : bool ;