{{-- School Logo --}}
{{--
@if(!is_null($team->logo))
@endif
--}}
{{-- School Name --}}
{{ $team->school->name }}
@if (!is_null($team->school2))
Coop: {{ $team->school2->name }}
@endif
{{-- Information --}}
@if (!is_null($team->location))
| Location |
{{ $team->location }} |
@endif
| Classification |
{{ $team->classification }} |
{{--
| Division |
{{ $team->subdivision }} |
--}}
@if (!is_null($team->colors))
| Colors |
@if (strlen($team->colors) >= 32)
{{ $team->colors }} |
@else
{{ $team->colors }} |
@endif
@endif
| |
@if (!is_null($team->supt))
| Superintendent |
{{ $team->supt->getDisplayName() }} |
@endif
@if (!is_null($team->prin))
| Principal |
{{ $team->prin->getDisplayName() }} |
@endif
@if (!is_null($team->ad))
| Athletic Director |
{{ $team->ad->getDisplayName() }} |
@endif
@if (!is_null($team->act_dir))
| Activities Director |
{{ $team->act_dir->getDisplayName() }} |
@endif
| |
| Head
@if (count($team->head_coaches) == 1)
Coach
@else
Coaches
@endif
|
@foreach ($team->head_coaches as $j => $head_coach)
@if (!is_null($head_coach->school_staff->getDisplayName()))
{{ $head_coach->school_staff->getDisplayName() }}@if ($j < (count($team->head_coaches) + 1)) @endif
@endif
@endforeach
|
@if (count($team->asst_coaches) > 0)
| Assistant
@if (count($team->asst_coaches) == 1)
Coach
@else
Coaches
@endif
|
@foreach ($team->asst_coaches as $j => $asst_coach)
@if (!is_null($asst_coach->school_staff->getDisplayName()))
{{ $asst_coach->school_staff->getDisplayName() }}@if ($j < (count($team->asst_coaches) + 1)) @endif
@else
NO NAME!
@endif
@endforeach
|
@endif
@if (count($team->managers) > 0)
|
@if (count($team->managers) == 1)
Team Manager
@else
Team Managers
@endif
|
@if (count($team->managers) == 1)
{{ $team->managers[0] }}
@else
{{ $team->managers[0] }}
{{ $team->managers[1] }}
@endif
|
@endif
@if (count($team->choreographers) > 0)
|
@if (count($team->choreographers) == 1)
Choreographer
@else
Choreographers
@endif
|
@if (count($team->choreographers) == 1)
{{ $team->choreographers[0] }}
@else
{{ $team->choreographers[0] }}
{{ $team->choreographers[1] }}
@endif
|
@endif
| |
@if (!is_null($team->routine_theme))
| Routine Theme |
{{ $team->routine_theme }} |
@endif
@if ($team->music_count > 0)
|
@if ($team->music_count == 1)
Music Selection
@else
Music Selections
@endif
|
@foreach ($team->music as $j => $ms)
@if ($j + 1 < $team->music_count)
{{ $ms }}
@else
{{ $ms }}
@endif
@endforeach
|
@endif
|
{{-- Team Photo --}}
@if (file_exists(public_path() . '/' . $team->photo))
@else
A team photo was not provided by the school.
@endif
|