@@ -81,10 +81,10 @@ |
||
81 | 81 | { |
82 | 82 | if ($isTeam) { |
83 | 83 | $championship = Championship::find(2); |
84 | - factory(Team::class, (int) $numFighters)->create(['championship_id' => $championship->id]); |
|
84 | + factory(Team::class, (int)$numFighters)->create(['championship_id' => $championship->id]); |
|
85 | 85 | } else { |
86 | 86 | $championship = Championship::find(1); |
87 | - $users = factory(User::class, (int) $numFighters)->create(); |
|
87 | + $users = factory(User::class, (int)$numFighters)->create(); |
|
88 | 88 | foreach ($users as $user) { |
89 | 89 | factory(Competitor::class)->create( |
90 | 90 | ['championship_id' => $championship->id, |
@@ -16,17 +16,17 @@ |
||
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, '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/seeds' => $this->app->databasePath().'/seeds'], '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'); |
|
25 | + $this->publishes([__DIR__ . '/../database/seeds' => $this->app->databasePath() . '/seeds'], '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 | 28 | |
29 | - $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function ($router) { |
|
29 | + $router->group(['prefix' => 'laravel-tournaments', 'middleware' => ['web']], function($router) { |
|
30 | 30 | $router->get('/', 'Xoco70\LaravelTournaments\TreeController@index')->name('tree.index'); |
31 | 31 | $router->post('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@store')->name('tree.store'); |
32 | 32 | $router->put('/championships/{championship}/trees', 'Xoco70\LaravelTournaments\TreeController@update')->name('tree.update'); |