@if(isset($product) && $product->photos)
@php
$galleryPhotos = [];
if (!empty($product->photos)) {
$galleryPhotos = is_array($product->photos)
? $product->photos
: explode(',', $product->photos);
}
@endphp
@foreach($galleryPhotos as $photo)
@endforeach
@endif