@foreach ($info['teams'] as $team)
{{ strtoupper(substr($team->ap->name, 0, 2)) }}
Table {{ $team->check_in_table }}

{{ $team->ap->name }}

# of Performers

Division
{{ $team->assigned_division }}
Order
{{ $team->performance_order }}
# Coaches
{{ (1 + count($team->asst_coaches)) }}
# Participants
{{ count($team->participants) }}
Total # Passes
{{ ((1 + count($team->asst_coaches)) + count($team->participants)) }}
Photo
{{ $team->times['photo'] }}
Check-In
{{ $team->times['check_in'] }}
Practice
{{ $team->times['practice'] }}
Perform
{{ $team->times['perform'] }}
Team Registration
Check-In Time


Participants
@foreach ($team->participants as $i => $participant) @endforeach
# Name Gr. Pass
{{ ($i + 1) }}. {{ $participant->name }} @if ($participant->is_alternate) - Alt. @endif @if (!Helpers::strIsEmpty($participant->grade)) {{ $participant->grade }} @endif
Team Room
{{ $team->assigned_room }}

Coaches
@foreach ($team->asst_coaches as $asst_coach) @if (Helpers::strIsEmpty($asst_coach->work_phone) and Helpers::strIsEmpty($asst_coach->mobile_phone)) @else @endif @if (Helpers::strIsEmpty($asst_coach->work_phone) and Helpers::strIsEmpty($asst_coach->mobile_phone)) @endforeach
Name & Info. Role Pass
{{ $team->head_coach->getDisplayName() }}
@if (!Helpers::strIsEmpty($team->head_coach->work_phone)) W: {{ Helpers::displayCombinedPhone($team->head_coach->work_phone) }}
@endif @if (!Helpers::strIsEmpty($team->head_coach->mobile_phone)) M: {{ Helpers::displayCombinedPhone($team->head_coach->mobile_phone) }} @endif
Head Coach
{{ $asst_coach->getDisplayName() }} @if (!Helpers::strIsEmpty($asst_coach->work_phone) or !Helpers::strIsEmpty($asst_coach->mobile_phone))
@if (!Helpers::strIsEmpty($asst_coach->work_phone)) W: {{ Helpers::displayCombinedPhone($asst_coach->work_phone) }}
@endif @if (!Helpers::strIsEmpty($asst_coach->mobile_phone)) M: {{ Helpers::displayCombinedPhone($asst_coach->mobile_phone) }} @endif
@endif
Asst. Coach @else @endif




Ticket/Pass Exchanges

Ticket exchanges for passes are only allowed for extra participants not shown on this roster. Parents or other adults are not allowed to exchange tickets for a pass. Exchanges are to be handled only by designated OSAA staff and tallied in the box above.




School Contact Information
{{ $team->ad->getDisplayName() }}, Athletic Director
@if (Helpers::strIsEmpty($team->ad->work_phone) and Helpers::strIsEmpty($team->ad->mobile_phone)) No contact phone numbers on file. @else @if (!Helpers::strIsEmpty($team->ad->work_phone)) W: {{ Helpers::displayCombinedPhone($team->ad->work_phone) }}
@endif @if (!Helpers::strIsEmpty($team->ad->mobile_phone)) M: {{ Helpers::displayCombinedPhone($team->ad->mobile_phone) }} @endif @endif
@endforeach