@if ($reviews->total() > 0) @foreach ($reviews as $item) @endforeach @else @endif
{{ __('Image') }} {{ __('Product Name') }} {{ __('Date') }} {{ __('Star') }} {{ __('Comment') }} {{ __('Actions') }}
{{ $item->product->name }} {{ $item->product->name }} {{ $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!') }}