11 lines
162 B
PHP
11 lines
162 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Tex;
|
||
|
|
||
|
use Illuminate\View\Compilers\BladeCompiler;
|
||
|
|
||
|
class TexCompiler extends BladeCompiler
|
||
|
{
|
||
|
protected $contentTags = ['<<<', '>>>'];
|
||
|
}
|