@extends('layouts.app') @section('title', $product->name) @section('content')
@if($product->files)
@foreach ($product->files as $file) @endforeach
@else {{ $product->name }} @endif

{{ $product->name }}

@if($product->approved_reviews_avg_rating) @for($i = 0; $i < 5; $i++) @endfor @else @for($i = 0; $i < 5; $i++) @endfor @endif
{{__(":count Ratting(s)",['count' => format_amount($product->approved_reviews_count)])}}
{{ format_amount($product->price,true) }}

{!! $product->description !!}

  • Tags :
  • {{implode(", ",$product->tags->pluck('name')->toArray())}}
{{--
--}} {{--
    --}} {{--
  • Share :
  • --}} {{--
  • --}} {{-- @include('partials.frontend.shareBtn')--}} {{--
  • --}} {{--
--}} {{--
--}}
@endsection