| Bracket ID | {{ $info['bracket']->id }} |
| Division | {{ $info['bracket']->division }} |
| Subdivision | {{ $info['bracket']->subdivision }} |
| Activity | {{ $info['bracket']->activity }} |
| Round ID | {{ $info['round']->id }} |
| Round Type | {{ $info['round']->round_type }} |
| Match ID | {{ $info['match']->id }} |
| Match No. | {{ $info['match']->number }} |
| Auto-Advance | {{ ($info['match']->is_auto_advance) ? 'Yes' : 'No' }} |
| ID | Seed | Name | Grade | Team | Holder | Win? |
| @if (!is_null($info['top_participant'])) {{$info['top_participant']->id }} @else - - @endif | @if (!is_null($info['top_participant'])) {{ Form::text('top_seed', (!is_null($info['top_participant'])) ? $info['top_participant']->seed : null, array('maxlength' => '2', 'style' => 'width: 20px; border-width: 1px;')) }} @else - - @endif | {{ (!is_null($info['top_participant'])) ? $info['top_participant']->display_name : '- -' }} | {{ (!is_null($info['top_participant'])) ? $info['top_participant']->grade : '- -' }} | {{ (!is_null($info['top_participant'])) ? $info['top_participant']->team_name : '- -' }} | {{ Form::text('top_holder', $info['match']->top_holder, array('style' => 'width: 75px; border-width: 1px;')) }} | {{ Form::checkbox('top_win', true, $info['match']->is_top_win, array('style' => 'height: 16px; width: 16px; margin-top: 3px;')) }} |
| ID | Seed | Name | Grade | Team | Holder | Win? |
| @if (!is_null($info['bottom_participant'])) {{ $info['bottom_participant']->id }} @else - - @endif | @if (!is_null($info['bottom_participant'])) {{ Form::text('bottom_seed', (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->seed : null, array('maxlength' => '2', 'style' => 'width: 20px; border-width: 1px;')) }} @else - - @endif | {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->display_name : '- -' }} | {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->grade : '- -' }} | {{ (!is_null($info['bottom_participant'])) ? $info['bottom_participant']->team_name : '- -' }} | {{ Form::text('bottom_holder', $info['match']->bottom_holder, array('style' => 'width: 75px; border-width: 1px;')) }} | {{ Form::checkbox('bottom_win', true, $info['match']->is_bottom_win, array('style' => 'height: 16px; width: 16px; margin-top: 3px;')) }} |
| Winner Next Match | @if(!is_null($info['winner_next_match'])) No. {{ $info['winner_next_match']->number }} ({{ $info['winner_next_match']->id }}) @else None @endif |
| Loser Next Match | @if(!is_null($info['loser_next_match'])) No. {{ $info['loser_next_match']->number }} ({{ $info['loser_next_match']->id }}) @else None @endif |