@foreach($images as $index => $image)
@php(
$src = (is_string($image) && (str_starts_with($image, 'http://') || str_starts_with($image, 'https://')))
? $image
: (file_exists(public_path('storage/'.$image))
? asset('storage/'.$image)
: 'https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=800&q=80&auto=format&fit=crop')
)
@endforeach