Hello Admin,
Summary of the new submission is below:
First Name: {{ $emailData['first_name'] ?? '-' }}
Last Name: {{ $emailData['last_name'] ?? '-' }}
Parent/Guardian: {{ $emailData['parent'] ?? '-' }}
Date Of Birth: {{ $emailData['dob'] ?? '-' }}
Email: {{ $emailData['email'] ?? '-' }}
Phone Number: {{ $emailData['phone_number'] ?? '-' }}
City: {{ $emailData['city'] ?? '-' }}
State: {{ $emailData['state'] ?? '-' }}
Height: {{ $emailData['height'] ?? '-' }} {{ $emailData['height_unit'] ?? '' }}
Weight: {{ $emailData['weight'] ?? '-' }} {{ $emailData['weight_unit'] ?? '' }}
Eye Color: {{ $emailData['eye_color'] ?? '-' }}
Hair Color: {{ $emailData['hair_color'] ?? '-' }}
Ethnicity: {{ $emailData['ethnicity'] ?? '-' }}
Gender: {{ ucfirst($emailData['gender'] ?? '-') }}
Areas of Interest:{!! $emailData['area_of_interest'] ?? '-' !!}
Experience: {{ $emailData['experience'] ?? '-' }}
Referred By: {{ $emailData['referred_by'] ?? '-' }}
Additional Experience: {{ $emailData['additional_experience'] ?? '-' }}
@if(!empty($emailData['about_imta']))
What do you hope to achieve by attending IMTA: {{ $emailData['about_imta'] ?? '-' }}
@endif
@if (!empty($emailData['images']))
Images:
@foreach($emailData['images'] as $imagePath)
@endforeach
@endif
@if (!empty($emailData['custom_audio_video_link']))
Videos:
@foreach ($emailData['custom_audio_video_link'] as $videoLink)
{{ $videoLink }}
@endforeach
@endif
@if (!empty($emailData['audio_files']))
Audios:
@foreach($emailData['audio_files'] as $audioPath)
Listen Audio
@endforeach
@endif
@if (!empty($emailData['talent_resume']))
Resume:
Download Resume
@endif
Social Media Links:
Instagram: {{ $emailData['instagram_url'] }}
Facebook: {{ $emailData['facebook_url'] }}
Twitter: {{ $emailData['twitter_url'] }}
YouTube: {{ $emailData['youtube_url'] }}
Thank you.