@php $images = is_array($image) ? $image : [$image]; $slides = collect($images)->map(fn ($item) => [ 'image' => Storage::disk('public')->url($item), // Convert each image path to a full URL ])->toArray(); @endphp