@extends('layouts.app') @section('title', 'Talent Detail') @section('styles') @endsection @section('content')
@if ($type == 'real-family') {{ Str::upper($talent->family_name) }} @else {{ Str::ucfirst($talent->first_name) . ' ' . Str::upper(Str::substr($talent->last_name, 0, 1)) . '.' ?? 'Unknown Talent' }} @endif
No photos available for this family.
@endif @elseif ($type == 'hand-talent') @if ($talent->handImages->isNotEmpty()) @foreach ($talent->handImages as $handImage)No photos available for this talent.
@endif @else @if ($talent->images->isNotEmpty()) @foreach ($talent->images as $talentImage)No photos available for this talent.
@endif @endif @if ($type != 'real-family')Age : {{ $talent->age }}
Gender : {{ Str::ucfirst($talent->gender) }}
@php $height = $talent->height; $feet = floor($height); $inches = round(($height - $feet) * 12); @endphpHeight: {{ $feet }}'{{ $inches }} inches
Hair Color : {{ Str::ucfirst($talent->hairColor ? $talent->hairColor->name : '-') }}
Eye Color : {{ Str::ucfirst($talent->eyeColor ? $talent->eyeColor->name : '-') }}
Race : {{ Str::ucfirst($talent->race ? $talent->race : '-') }}
Location : {{ Str::ucfirst($talent->state ? $talent->state : '-') }}
Image not available
@endifNo videos available.
@endifAudios not available.
@endif