@extends('layouts.store') @section('title', $product->t('name') . ' - ' . __('app.site_name')) @section('meta_description', Str::limit(strip_tags($product->t('description')), 160)) @section('content')
@if($product->image) {{ $product->t('name') }} @else
@endif
@if($product->gallery && count($product->gallery) > 0)
@if($product->image) @endif @foreach($product->gallery as $img) @endforeach
@endif
{{ $product->category?->t('name') }}

{{ $product->t('name') }}

{{ number_format($product->price, 2) }} {{ __('app.jod') }} @if($product->hasDiscount()) {{ number_format($product->compare_price, 2) }} -{{ $product->discountPercent() }}% @endif
@if($product->inStock()) {{ __('app.in_stock') }} ({{ $product->stock }}) @else {{ __('app.out_of_stock') }} @endif {{ __('app.sku') }}: {{ $product->sku }}
@if($product->t('description'))

{{ __('app.description') }}

{!! nl2br(e($product->t('description'))) !!}
@endif
@csrf
{{ __('app.natural_ingredients') }}
{{ __('app.why_delivery') }}
{{ __('app.cod') }}
@if($relatedProducts->count())

{{ __('app.related_products') }}

@foreach($relatedProducts as $rp) @include('store.partials.product-card', ['product' => $rp]) @endforeach
@endif
@endsection