| {{ __('Image') }} | {{ __('Product Name') }} | {{ __('Date') }} | {{ __('Star') }} | {{ __('Comment') }} | {{ __('Actions') }} | 
|---|---|---|---|---|---|
|  | {!! 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!') }} | |||||