@endif
@if (!is_null($info['school_staff']))
{{ $info['staff']->display_name }}
@else
TBD
@endif
{{ Helpers::getActivityName($info['ap']->activity) }}
@if (!Helpers::strIsEmpty($info['staff']->alt_title))
{{ $info['staff']->alt_title }} ({{ $info['role']->name }})
@else
{{ $info['role']->name }}
@endif
{{ $info['ap']->name }}
@if ($info['staff']->is_email_public or (Auth::check() and Auth::user()->isOsaaUser()))
{{ $info['staff']->display_email }}
@endif
@if (!is_null($info['staff']->work_phone) and ($info['staff']->is_work_phone_public or (Auth::check() and Auth::user()->isOsaaUser())))
Work:
{{ Helpers::displayCombinedPhone($info['staff']->work_phone) }}
@endif
@if (!is_null($info['staff']->mobile_phone) and ($info['staff']->is_mobile_phone_public or (Auth::check() and Auth::user()->isOsaaUser())))
Mobile:
{{ Helpers::displayCombinedPhone($info['staff']->mobile_phone) }}
@endif
@if (Auth::check() and Auth::user()->isOsaaUser())
ID #: {{ $info['staff']->id }}
@if (!is_null($info['school_staff']))
School Staff ID #: {{ $info['school_staff']->id }}
@endif
Type: {{ (!Helpers::strIsEmpty($info['staff']->staff_type)) ? $info['staff']->staff_type : 'NULL' }}
Shown on Rosters: {{ ($info['staff']->is_on_rosters) ? 'YES' : 'NO' }}
{{--Created: {{ date('n/j/Y g:ia', strtotime($info['staff']->created_at)) }}
--}}
Updated: {{ date('n/j/Y g:ia', strtotime($info['staff']->updated_at)) }}
Modifier: {{ $info['updated_by'] }}
{{--Notes: {{ $info['staff']->staff_notes }}--}}
Notes: {{ (!Helpers::strIsEmpty(preg_replace('/\[.*\]/', '', $info['staff']->staff_notes))) ? preg_replace('/\[.*\]/', '', $info['staff']->staff_notes) : 'NULL' }}