@@ -23,11 +23,11 @@ |
||
| 23 | 23 | { |
| 24 | 24 | parent::boot(); |
| 25 | 25 | |
| 26 | - static::deleting(function ($championship) { |
|
| 26 | + static::deleting(function($championship) { |
|
| 27 | 27 | $championship->competitors()->delete(); |
| 28 | 28 | $championship->settings()->delete(); |
| 29 | 29 | }); |
| 30 | - static::restoring(function ($championship) { |
|
| 30 | + static::restoring(function($championship) { |
|
| 31 | 31 | $championship->competitors()->restore(); |
| 32 | 32 | $championship->settings()->restore(); |
| 33 | 33 | }); |
@@ -16,20 +16,20 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | public function boot(Router $router) |
| 18 | 18 | { |
| 19 | - $viewPath = __DIR__.'/../resources/views'; |
|
| 19 | + $viewPath = __DIR__ . '/../resources/views'; |
|
| 20 | 20 | $this->loadViewsFrom($viewPath, 'kendo-tournaments'); |
| 21 | 21 | // $this->publishes([ $viewPath => base_path('resources/views/vendor/kendo-tournaments'),], 'kendo-tournaments'); |
| 22 | 22 | |
| 23 | - $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
| 24 | - $this->loadTranslationsFrom(__DIR__.'/../translations', 'kendo-tournaments'); |
|
| 23 | + $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
|
| 24 | + $this->loadTranslationsFrom(__DIR__ . '/../translations', 'kendo-tournaments'); |
|
| 25 | 25 | |
| 26 | 26 | // $this->publishes([__DIR__ . '/views' => base_path('resources/views/vendor/kendo-tournaments')]); |
| 27 | - $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'migrations'); |
|
| 28 | - $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'seeds'); |
|
| 29 | - $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'seeds'); |
|
| 30 | - $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets'); |
|
| 27 | + $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations'); |
|
| 28 | + $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'seeds'); |
|
| 29 | + $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'seeds'); |
|
| 30 | + $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets'); |
|
| 31 | 31 | |
| 32 | - $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function ($router) { |
|
| 32 | + $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function($router) { |
|
| 33 | 33 | $router->get('/', 'Xoco70\KendoTournaments\TreeController@index')->name('tree.index'); |
| 34 | 34 | $router->post('/championships/{championship}/trees', 'Xoco70\KendoTournaments\TreeController@store')->name('tree.store'); |
| 35 | 35 | }); |