|  | @@ -16,18 +16,18 @@ | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 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 |   | 
                                                                                                            
                                                            | 22 |  | -        $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); | 
                                                                                                            
                                                            | 23 |  | -        $this->loadTranslationsFrom(__DIR__.'/../translations', 'kendo-tournaments'); | 
                                                                                                            
                                                            |  | 22 | +        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); | 
                                                                                                            
                                                            |  | 23 | +        $this->loadTranslationsFrom(__DIR__ . '/../translations', 'kendo-tournaments'); | 
                                                                                                            
                                                            | 24 | 24 |   | 
                                                                                                            
                                                            | 25 |  | -        $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'migrations'); | 
                                                                                                            
                                                            | 26 |  | -        $this->publishes([__DIR__.'/../database/seeds' => $this->app->databasePath().'/seeds'], 'seeds'); | 
                                                                                                            
                                                            | 27 |  | -        $this->publishes([__DIR__.'/../database/factories' => $this->app->databasePath().'/factories'], 'seeds'); | 
                                                                                                            
                                                            | 28 |  | -        $this->publishes([__DIR__.'/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets'); | 
                                                                                                            
                                                            |  | 25 | +        $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations'); | 
                                                                                                            
                                                            |  | 26 | +        $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], 'seeds'); | 
                                                                                                            
                                                            |  | 27 | +        $this->publishes([__DIR__ . '/../database/factories' => $this->app->databasePath() . '/factories'], 'seeds'); | 
                                                                                                            
                                                            |  | 28 | +        $this->publishes([__DIR__ . '/../resources/assets' => public_path('vendor/kendo-tournaments')], 'assets'); | 
                                                                                                            
                                                            | 29 | 29 |   | 
                                                                                                            
                                                            | 30 |  | -        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function ($router) { | 
                                                                                                            
                                                            |  | 30 | +        $router->group(['prefix' => 'kendo-tournaments', 'middleware' => ['web']], function($router) { | 
                                                                                                            
                                                            | 31 | 31 |              $router->get('/', 'Xoco70\KendoTournaments\TreeController@index')->name('tree.index'); | 
                                                                                                            
                                                            | 32 | 32 |              $router->post('/championships/{championship}/trees', 'Xoco70\KendoTournaments\TreeController@store')->name('tree.store'); | 
                                                                                                            
                                                            | 33 | 33 |          }); |