SKU: {{ $product->sku }}
@endif{{ $product->description }}
Free Shipping
Secure Payment
Easy Returns
{{ $product->description ?: 'No detailed description available for this product.' }}
| Brand: | {{ $website->name }} |
| Product Name: | {{ $product->name }} |
| SKU: | {{ $product->sku }} |
| Weight: | {{ $product->weight }} kg |
| Dimensions: | {{ $product->dimensions['length'] ?? '' }}cm × {{ $product->dimensions['width'] ?? '' }}cm × {{ $product->dimensions['height'] ?? '' }}cm |
| Categories: | {{ $product->categories->pluck('name')->implode(', ') }} |
| Status: | {{ $product->in_stock ? 'In Stock' : 'Out of Stock' }} |
| Variations: | {{ $product->variations->count() }} options available |
| Variation | SKU | Price | Stock | Status |
|---|---|---|---|---|
| {{ $variation->variation_display }} | {{ $variation->sku }} |
{{ $website->getCurrencySymbol() }} {{ number_format($variation->final_price, 2) }} | {{ $variation->stock_quantity }} units | @if($variation->stock_quantity > 0) Available @else Out of Stock @endif |
{{ Str::limit($relatedProduct->description, 80) }}