|
@@ -16,16 +16,16 @@ |
|
|
block discarded – undo |
|
16
|
16
|
*/ |
|
17
|
17
|
public function boot() |
|
18
|
18
|
{ |
|
19
|
|
- $viewPath = __DIR__.'/../resources/views'; |
|
|
19
|
+ $viewPath = __DIR__ . '/../resources/views'; |
|
20
|
20
|
$this->loadViewsFrom($viewPath, 'laravel-tournaments'); |
|
21
|
21
|
|
|
22
|
|
- $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
23
|
|
- $this->loadTranslationsFrom(__DIR__.'/../translations', 'laravel-tournaments'); |
|
|
22
|
+ $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
|
|
23
|
+ $this->loadTranslationsFrom(__DIR__ . '/../translations', 'laravel-tournaments'); |
|
24
|
24
|
|
|
25
|
|
- $this->publishes([__DIR__ . '/../database/seeders' => $this->app->databasePath().'/seeders'], 'laravel-tournaments'); |
|
26
|
|
- $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'laravel-tournaments'); |
|
27
|
|
- $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
28
|
|
- $this->publishes([__DIR__.'/../config/laravel-tournaments.php' => config_path('laravel-tournaments.php')], 'laravel-tournaments'); |
|
|
25
|
+ $this->publishes([__DIR__ . '/../database/seeders' => $this->app->databasePath() . '/seeders'], 'laravel-tournaments'); |
|
|
26
|
+ $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'laravel-tournaments'); |
|
|
27
|
+ $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/laravel-tournaments')], 'laravel-tournaments'); |
|
|
28
|
+ $this->publishes([__DIR__ . '/../config/laravel-tournaments.php' => config_path('laravel-tournaments.php')], 'laravel-tournaments'); |
|
29
|
29
|
} |
|
30
|
30
|
|
|
31
|
31
|
/** |
Please login to merge, or discard this patch.