@if($product->images->count() > 0) {{ $product->name }} @else
No Image Available
@endif

{{ $product->name }}

@if($product->is_on_sale)
R{{ number_format($product->sale_price, 2) }} R{{ number_format($product->price, 2) }} SALE
@else

R{{ number_format($product->price, 2) }}

@endif

{{ \Illuminate\Support\Str::limit($product->description ?? '', 150) }}

Category: {{ $product->category->name }}

View Full Details