Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function boot() |
||
12 | { |
||
13 | $this->mergeConfigFrom(__DIR__.'/../config/form.php', 'form'); |
||
14 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'saimondev03-form'); |
||
15 | //$this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'form'); |
||
16 | $this->loadJsonTranslationsFrom(__DIR__.'/../resources/lang'); |
||
17 | |||
18 | Blade::component('Saimondev03\Form', 'form'); |
||
19 | Blade::component('Saimondev03\Field', 'field'); |
||
20 | } |
||
22 |