@extends('layouts.app', ['title' => $product->seo_title ?: $product->name]) @section('content')
{{ $product->name }}
{{ $product->brand?->name }}

{{ $product->name }}

SKU {{ $product->sku }} @if($product->pack_size) ยท {{ $product->pack_size }} @endif

R{{ number_format((float) $product->currentPrice(), 2) }} @if ($product->hasActiveSpecial()) R{{ number_format((float) $product->price, 2) }} @endif
{{ $product->stock_quantity > 0 ? 'In Stock' : 'Out of Stock' }}
@csrf
{!! nl2br(e($product->description)) !!}
Delivery is calculated by zone during checkout. Substitution preferences can be selected before payment.

Related Products

@foreach ($related as $product) @endforeach
@endsection