Favorite Family Details
{{ $message }}
@if ($families->count() > 0)
@foreach ($families as $family)
@php $photo = $family->photos->where('is_main', 1)->first() ?? $family->photos->first(); $imageUrl = $photo ? asset('storage/family_photos/'. $photo->url) : null; @endphp @if ($imageUrl)
@endif
{{ $family->family_name }}
@endforeach
@endif