Model: {{ $product->model ?? 'N/A' }}
{{ $product->name }}
৳{{ number_format($product->price) }}
@if($product->old_price)
৳{{ number_format($product->old_price) }}
@php $discount = (($product->old_price - $product->price) / $product->old_price) * 100; @endphp
{{ round($discount) }}% OFF
@endif
Weight: {{ $product->weight }} kg
Product Description
{!! $product->description !!}
Specifications
@forelse($product->specifications ?? [] as $spec)
-
{{ $spec['name'] }}
{{ $spec['value'] }}
@empty
- No specific technical data.
@endforelse
Warranty Session
{{ $product->warranty ?? 'Standard Brand Warranty applicable.' }}