@php $formattedGallery = $galleryItems->map(function($item) { $imgPath = $item->image_path; if (!str_starts_with($imgPath, 'http://') && !str_starts_with($imgPath, 'https://')) { $imgPath = asset($imgPath); } return [ 'img' => $imgPath, 'title' => $item->title, 'desc' => $item->description ]; })->toArray(); @endphp