Help NYMT have a tell us once approach to name pronunciation. Add any unclear or unusual pronunciations below (e.g EE-vah-lin).
@endif
{{ $myauditionees->onEachSide(0)->links() }}
First NameLast NameAgeTags
{{-- Pastoral & Creative Teams don't see payment information. --}}
@if (Auth::user()->hasTeamPermission(Auth::user()->currentTeam, 'payments'))
Paid?
@endif
{{-- Pastoral Team don't see scores on the Audition table. --}}
@if (Auth::user()->hasTeamPermission(Auth::user()->currentTeam, 'scores'))
Acting ScoreActing CommentSinging ScoreSinging CommentDancing ScoreDancing Comment
@endif
{{-- Pastoral Team don't see scores on the Audition table. --}}
@if (Auth::user()->hasTeamPermission(Auth::user()->currentTeam, 'scores'))
Registration
@else
Registration
@endif
@if (Auth::user()->hasTeamPermission(Auth::user()->currentTeam, 'pastoralstaffonly'))
Name sounds like
@else
Potential Project(s)
@endif
{{-- Other roles don't have space for this heading. --}}
@if (Auth::user()->hasTeamPermission(Auth::user()->currentTeam, 'pastoralstaffonly'))
Profile Quick View
@endif
@foreach($myauditionees as $auditionee)
{{-- This code identifies auditionees marked as 'Present' --}}
@php
$present = str(
$auditionee->auditions
->firstWhere('venue_date_id', $venuedate->id)?->score?->outcome
)->trim()->lower()->exactly('present');
@endphp
@php
$thisAudition = $auditionee->auditions->firstWhere('venue_date_id', $venuedate->id);
@endphp
{{-- This cell shows the comment field in brackets after the firstname, used for pronunciation of firstname --}}
@if ($present)
@endif
{{ ucwords($auditionee->firstname) }}
@if (!empty($auditionee->pastoral->comment))