@extends('layouts.home') @section('content')
@if($product->image) {{ $product->name }} @else {{ $product->name }} @endif @php $discount = 0; if ($product->discount_price && $product->price > $product->discount_price) { $discount = round( (($product->price - $product->discount_price) / $product->price) * 100, ); } @endphp @if ($discount)
{{ $discount }}% OFF
@endif
{{ $product->category?->name }}

{{ $product->name }}

@if ($discount) {{ $product->discount_price }} @if ($config->currancy) ({{ $config->currancy }}) @endif {{ $product->price }} @if ($config->currancy) ({{ $config->currancy }}) @endif
Save {{ $product->price - $product->discount_price }} @if ($config->currancy) ({{ $config->currancy }}) @endif
@else {{ $product->price }} @if ($config->currancy) ({{ $config->currancy }}) @endif @endif

{{ $product->description }}

@if ($product->is_stock_available)
In Stock
@else
Out of Stock
@endif
@csrf
Free shipping on orders over $50
100% Organic & Natural
30-day money-back guarantee
@endsection