@php
$imageUrl = isset($profile['image']) ? $profile['image'] :
(isset($profile['images']) && !empty($profile['images']) ? $profile['images'][0] :
asset('images/placeholder.jpg'));
// Create descriptive alt text
$imageAlt = "{$profile['name']}, {$profile['age']} years old from {$profile['location']}";
@endphp

@if($featured)
Featured
@endif
{{ $profile['name'] }}
{{ $profile['age'] }} years
{{ $profile['location'] }}
{{ \Illuminate\Support\Str::limit($profile['story'], 120) }}
@once
@endonce