{{ $product->name }}

@if ($product->categories->isNotEmpty())

{{ $product->categories->first()->name }}

@endif

SKU: {{ $product->sku ?? 'N/A' }}

Descripción:

{!! $product->description !!}
@if ($hasVariants && $sizes->isNotEmpty())

Tallas disponibles

@foreach ($sizes as $size) @endforeach
@error('selectedSizeId') {{ $message }} @enderror
@endif @php $priceInfo = $product->price_info; if ($selected_product) { $priceInfo = $selected_product->price_info; } @endphp @if ($product->salable)
Pares
Precio Unitario:
@if ($priceInfo->min_price !== $priceInfo->max_price) Desde ${{ number_format($priceInfo->min_price, 2) }} hasta ${{ number_format($priceInfo->max_price, 2) }} @else @if (!is_null($priceInfo->base_price) && $priceInfo->min_price < $priceInfo->base_price) ${{ number_format($priceInfo->base_price, 2) }} ${{ number_format($priceInfo->min_price, 0) }} @else ${{ number_format($priceInfo->min_price, 0) }} @endif @endif
@else @endif
@if ($product->categories->isNotEmpty()) Categoría: {{ $product->categories->first()->name }} @endif @foreach ($product->features as $feature) @php $value = $feature->pivot->value; $showBadge = false; $badgeText = ''; if ($feature->type === 'option') { if ( strtolower($value) === 'si' || $value == '1' || strtolower($value) === 'yes' ) { $showBadge = true; $badgeText = $feature->name; } } elseif ($feature->type === 'value') { if (!empty($value)) { $showBadge = true; $badgeText = "{$feature->name}: {$value}"; } } @endphp @if ($showBadge) {{ $badgeText }} @endif @endforeach
@if ($product->salable)

Aceptamos pagos con:

@endif
Encriptación
SSL Protegida
Pago Seguro
Garantizado
@if (count($product->details ?? []))

Detalles del calzado

@foreach ($product->details as $detail)
@endforeach
@endif @if (count($product->related_products))

Productos similares

@foreach ($product->related_products as $relatedProduct) @endforeach
@endif