Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function boot() |
||
20 | { |
||
21 | $this->publishes([ |
||
22 | __DIR__.'/../publish/config/laravel-fontawesome.php' => config_path('laravel-fontawesome.php'), |
||
23 | ], 'config'); |
||
24 | |||
25 | Blade::directive('fa', function ($expression) { |
||
26 | return "<?php echo FontAwesome::icon({$expression}); ?>"; |
||
27 | }); |
||
28 | } |
||
29 | |||
46 |