@props(['product']) @php $image = $product->images[0] ?? null; $imageUrl = $image ? (str_starts_with($image, 'http') ? $image : asset('storage/' . $image)) : asset('images/placeholder.jpg'); $minPrice = $product->variants->min('price') ?? $product->base_price; $typeLabels = config('shop.product_type_labels', []); @endphp