@if ($talentPartModels->isEmpty())
No data found.
@else
@if ($title == 'real-family')
@foreach (range('A', 'Z') as $letter)
{{ $letter }}
@endforeach
Clear
@endif @foreach ($talentPartModels as $talent) @if ($title == 'voiceover')
{{ Str::ucfirst($talent->voiceover_name) }}
{{ ucfirst($talent->gender) ?? 'N/A' }}
@if ($talent->audios->isNotEmpty()) @foreach ($talent->audios as $audio)
Your browser does not support the audio element.
@endforeach @else
No audio available for this talent.
@endif
@elseif ($title == 'real-family')
{{ Str::upper($talent->family_name) }}
@elseif ($title == 'hand-talent')
@if ($talent && $talent->handImages->isNotEmpty()) @foreach ($talent->handImages->take(5) as $image)
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
@endforeach @else
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
Age- {{ $talent->age ?? '-' }}
@endif
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
@else
@if ($talent && $talent->images->isNotEmpty()) @foreach ($talent->images->take(5) as $image)
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
@endforeach @else
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
Age- {{ $talent->age ?? '-' }}
@endif
{{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }}
@endif @endforeach
@endif
@if ($title != 'real-family')
{{ $talentPartModels->links() }}
@endif