Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function boot() |
||
11 | { |
||
12 | $this->publishes([ |
||
13 | __DIR__.'/../config/laravel-blade-javascript.php' => config_path('laravel-blade-javascript.php'), |
||
14 | ], 'config'); |
||
15 | |||
16 | Blade::directive('javascript', function ($expression) { |
||
17 | return "<?= \Spatie\BladeJavaScript\Renderer::render({$this->removeBrackets($expression)}); ?>"; |
||
18 | }); |
||
19 | } |
||
20 | |||
34 |