{{$product->name}}

{{$product->getPrice()}}
@foreach($product->assets as $asset )
{{$product->name .' in '. $category->name}}
@endforeach
{{$product->excerpt}}
@if(app()->getLocale() === 'fa')
@endif

{{$product->name}}

@if($product->getPrice()) | {{$product->getPrice()}} @endif
    @if($product->description)
  • {{__('Description')}}

    {!! $product->description !!}
  • @endif @if($product->features->count() > 0)
  • {{__('Features')}}

    @foreach($product->features as $tag)
    {{$tag->name}}
    @endforeach
  • @endif @if($product->specs)
  • {{__('Specifications')}}

    @foreach($product->specs as $spec)
    {{$spec->key}}
    {{$spec->value}}
    @endforeach
  • @endif
{{__('tags')}}: @foreach($product->tags as $tag) {{$tag->name}} @endforeach