@@ -201,7 +201,9 @@ |
||
201 | 201 | $fightsByRound = $championship->fightsByRound($numRound)->with('group.parent')->get(); |
202 | 202 | foreach ($fightsByRound as $numFight => $fight) { |
203 | 203 | $parentGroup = $fight->group->parent; |
204 | - if ($parentGroup == null) break; |
|
204 | + if ($parentGroup == null) { |
|
205 | + break; |
|
206 | + } |
|
205 | 207 | $parentFight = $parentGroup->fights->get(0); //TODO This Might change when extending to Preliminary |
206 | 208 | |
207 | 209 | // IN this $fight, is c1 or c2 has the info? |