@php $listImagePc = []; $listImageSp = []; for ($i = 1; $i <= 3; $i++) { if (!empty($item['slide_image_pc' . $i])) { $listImagePc[] = $item['slide_image_pc' . $i]; } if (!empty($item['slide_image_sp' . $i])) { $listImageSp[] = $item['slide_image_sp' . $i]; } } if (count($listImagePc) == 0) { $listImagePc[] = 'https://assets.micado-rayout.jp/img/common/no-image-found-360x250.png'; } if (count($listImageSp) == 0) { $listImageSp = $listImagePc; } @endphp