@if ($reviews->total() > 0) @foreach ($reviews as $item) @endforeach @else @endif
{{ __('Image') }} {{ __('Product Name') }} {{ __('Date') }} {{ __('Star') }} {{ __('Comment') }} {{ __('Actions') }}
{{ $item->product->name }} {!! BaseHelper::clean($item->product->name) !!} @if ($sku = $item->product->sku)

({{ $sku }})

@endif @if (is_plugin_active('marketplace') && $item->product->store->id)

{{ __('Sold by') }}: {{ $item->product->store->name }}

@endif
{{ $item->created_at->translatedFormat('M d, Y h:m') }} {{ $item->star }} {{ Str::limit($item->comment, 120) }} {!! Form::open([ 'url' => route('public.reviews.destroy', $item->id), 'onSubmit' => 'return confirm("' . __('Do you really want to delete the review?') . '")', ]) !!} {!! Form::close() !!}
{{ __('No reviews!') }}