We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb798cd commit 2964d2dCopy full SHA for 2964d2d
src/Illuminate/View/Compilers/BladeCompiler.php
@@ -65,7 +65,7 @@ class BladeCompiler extends Compiler implements CompilerInterface
65
* @var array
66
*/
67
protected $compilers = [
68
- 'Comments',
+ // 'Comments',
69
'Extensions',
70
'Statements',
71
'Echos',
@@ -219,7 +219,7 @@ public function compileString($value)
219
// step which compiles the component Blade tags into @component directives
220
// that may be used by Blade. Then we should call any other precompilers.
221
$value = $this->compileComponentTags(
222
- $this->storeUncompiledBlocks($value)
+ $this->compileComments($this->storeUncompiledBlocks($value))
223
);
224
225
foreach ($this->precompilers as $precompiler) {
0 commit comments