@@ -77,11 +77,11 @@ |
||
77 | 77 | FightersGroup::generateFights($groups, $settings, $championship); |
78 | 78 | } catch (TreeGenerationException $e) { |
79 | 79 | redirect()->back() |
80 | - ->withErrors([$numFighters ."-".$e->getMessage()]); |
|
80 | + ->withErrors([$numFighters . "-" . $e->getMessage()]); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | return redirect()->back() |
84 | 84 | ->with('numFighters', $numFighters) |
85 | - ->with(['success' , "Success"]); |
|
85 | + ->with(['success', "Success"]); |
|
86 | 86 | } |
87 | 87 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('competitor_team', function (Blueprint $table) { |
|
16 | + Schema::create('competitor_team', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->integer('team_id')->unsigned()->nullable()->index(); |
19 | 19 | $table->integer('competitor_id')->unsigned()->index(); |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | use Xoco70\KendoTournaments\TreeGen\DirectEliminationTreeGen; |
3 | 3 | |
4 | -$directEliminationTree = $championship->fightersGroups->where('round',1)->map(function ($item, $key) use ($championship) { |
|
5 | - if ($championship->category->isTeam()){ |
|
4 | +$directEliminationTree = $championship->fightersGroups->where('round', 1)->map(function($item, $key) use ($championship) { |
|
5 | + if ($championship->category->isTeam()) { |
|
6 | 6 | |
7 | 7 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
8 | 8 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
9 | - }else{ |
|
9 | + } else { |
|
10 | 10 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
11 | 11 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
12 | 12 |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
8 | 8 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
9 | - }else{ |
|
9 | + } else{ |
|
10 | 10 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
11 | 11 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
12 | 12 |
@@ -56,7 +56,9 @@ |
||
56 | 56 | $matches = array_chunk($teams, 2); |
57 | 57 | |
58 | 58 | //If there's already a match in the match array, then that means the next round is round 2, so increase the round number |
59 | - if (count($this->brackets)) $roundNumber++; |
|
59 | + if (count($this->brackets)) { |
|
60 | + $roundNumber++; |
|
61 | + } |
|
60 | 62 | |
61 | 63 | $countMatches = count($matches); |
62 | 64 | //Create the first full round of teams, some may be blank if waiting on the results of a previous round |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('fighters_groups', function (Blueprint $table) { |
|
16 | + Schema::create('fighters_groups', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->tinyInteger('short_id'); |
19 | 19 | $table->integer('championship_id')->unsigned()->index(); |
@@ -11,11 +11,11 @@ |
||
11 | 11 | public $timestamps = true; |
12 | 12 | |
13 | 13 | |
14 | - public function group(){ |
|
14 | + public function group() { |
|
15 | 15 | return $this->belongsTo(FightersGroup::class); |
16 | 16 | } |
17 | 17 | |
18 | - public function team(){ |
|
18 | + public function team() { |
|
19 | 19 | return $this->belongsTo(Team::class); |
20 | 20 | } |
21 | 21 | } |
22 | 22 | \ No newline at end of file |
@@ -12,11 +12,11 @@ |
||
12 | 12 | |
13 | 13 | |
14 | 14 | |
15 | - public function group(){ |
|
15 | + public function group() { |
|
16 | 16 | return $this->belongsTo(FightersGroup::class); |
17 | 17 | } |
18 | 18 | |
19 | - public function competitor(){ |
|
19 | + public function competitor() { |
|
20 | 20 | return $this->belongsTo(Competitor::class); |
21 | 21 | } |
22 | 22 | } |
23 | 23 | \ No newline at end of file |
@@ -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 | }); |
@@ -7,9 +7,9 @@ |
||
7 | 7 | { |
8 | 8 | public function up() |
9 | 9 | { |
10 | - Schema::create('team', function (Blueprint $table) { |
|
10 | + Schema::create('team', function(Blueprint $table) { |
|
11 | 11 | $table->increments('id'); |
12 | - $table->integer('short_id')->unsigned()->nullable() ; |
|
12 | + $table->integer('short_id')->unsigned()->nullable(); |
|
13 | 13 | $table->string('name'); |
14 | 14 | $table->integer('championship_id')->unsigned()->index(); // A checar |
15 | 15 | $table->string('picture')->nullable(); |