Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | protected function bootForConsole() |
||
31 | { |
||
32 | // Publishing the views. |
||
33 | $this->publishes([ |
||
34 | __DIR__.'/../resources/views' => base_path('resources/views/vendor/backpack'), |
||
35 | ], 'template-operation.views'); |
||
36 | |||
37 | // Publishing the translation files. |
||
38 | $this->publishes([ |
||
39 | __DIR__.'/../resources/lang' => resource_path('lang/vendor/backpack'), |
||
40 | ], 'template-operation.lang'); |
||
41 | } |
||
42 | } |
||
43 |