1 | <?php |
||
7 | class TranslatableServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | public function boot() |
||
10 | { |
||
11 | // Publish a config file |
||
12 | $this->publishes([ |
||
13 | __DIR__.'/../config/laravel-translatable.php' => config_path('laravel-translatable.php'), |
||
14 | ], 'config'); |
||
15 | } |
||
16 | |||
17 | public function register() |
||
21 | } |
||
22 |