| Full Name: |
{{ $talent->form_id == 1
? ($talent->first_name ?? '-')
: (trim(($talent->first_name ?? '') . ' ' . ($talent->last_name ?? '')) ?: '-')
}}
|
| Date of Birth: |
{{ $talent->dob ? \Carbon\Carbon::parse($talent->dob)->format('m/d/Y') : '-' }} |
| Email: |
{{ $talent->email ?? '-' }} |
| Phone: |
{{ $talent->phone ?? '-' }} |
| City: |
{{ $talent->city ?? '-' }} |
| Height: |
{{ $talent->height ?? '-' }} |
| Weight: |
{{ $talent->weight ?? '-' }} |
| Eye Color: |
{{ $talent->eye_color ?? '-' }} |
| Hair Color: |
{{ $talent->hair_color ?? '-' }} |
| Ethnicity: |
{{ $talent->ethnicity ?? '-' }} |
| Gender At Birth: |
{{ $talent->gender ?? '-' }} |
| Area(s) of Interest: |
{{ $areasOfInterest ?? '-' }} |
@if(isset($photoUrls) && is_array($photoUrls) && count($photoUrls) > 0)
@foreach($photoUrls as $index => $url)
| Photo {{ $index + 1 }}: |
View Photo {{ $index + 1 }} |
@endforeach
@else
| Photos: |
No photos provided. |
@endif
@if($resumeUrl)
| Resume: |
View Resume |
@else
| Resume: |
No Resume provided. |
@endif
@if($talent->form_id == 3)
@if(isset($audioUrls) && is_array($audioUrls) && count($audioUrls) > 0)
@foreach($audioUrls as $index => $url)
| Audio {{ $index + 1 }}: |
Listen Audio {{ $index + 1 }} |
@endforeach
@else
| Audio: |
No audio provided. |
@endif
@if(isset($videoUrls) && is_array($videoUrls) && count($videoUrls) > 0)
@foreach($videoUrls as $index => $url)
| Video {{ $index + 1 }}: |
Watch Video {{ $index + 1 }} |
@endforeach
@else
| Videos: |
No video provided. |
@endif
@endif
| Instagram: |
@if(!empty($talent->instagram_url))
{{ $talent->instagram_url }}
@else
-
@endif
|
| Facebook: |
{{ $talent->facebook_url ?? '-' }}
|
| Twitter: |
{{ $talent->twitter_url ?? '-' }}
|
| Youtube: |
{{ $talent->youtube_url ?? '-' }}
|