@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public function rounds() |
33 | 33 | { |
34 | - return $this->belongsToMany(Round::class,'round_team')->withTimestamps(); |
|
34 | + return $this->belongsToMany(Round::class, 'round_team')->withTimestamps(); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | } |
38 | 38 | \ No newline at end of file |
@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | public function rounds() |
78 | 78 | { |
79 | - return $this->belongsToMany(Round::class,'round_competitor')->withTimestamps(); |
|
79 | + return $this->belongsToMany(Round::class, 'round_competitor')->withTimestamps(); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | } |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | -$directEliminationTree = $championship->rounds->map(function ($item, $key) use ($championship) { |
|
3 | - if ($championship->category->isTeam()){ |
|
2 | +$directEliminationTree = $championship->rounds->map(function($item, $key) use ($championship) { |
|
3 | + if ($championship->category->isTeam()) { |
|
4 | 4 | |
5 | 5 | $fighter1 = $item->team1 != null ? $item->team1->name : "Bye"; |
6 | 6 | $fighter2 = $item->team2 != null ? $item->team2->name : "Bye"; |
7 | - }else{ |
|
7 | + } else { |
|
8 | 8 | $fighter1 = $item->competitors->get(0) != null ? $item->competitors->get(0)->user->name : "Bye"; |
9 | 9 | $fighter2 = $item->competitors->get(1) != null ? $item->competitors->get(1)->user->name : "Bye"; |
10 | 10 | } |
@@ -3,7 +3,7 @@ |
||
3 | 3 | |
4 | 4 | use \Illuminate\Foundation\Auth\User; |
5 | 5 | |
6 | -$factory->define(\Illuminate\Foundation\Auth\User::class, function (Faker\Generator $faker) { |
|
6 | +$factory->define(\Illuminate\Foundation\Auth\User::class, function(Faker\Generator $faker) { |
|
7 | 7 | |
8 | 8 | $email = $faker->email; |
9 | 9 | return [ |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('users', function (Blueprint $table) { |
|
15 | + Schema::create('users', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('email')->unique(); |