@extends('seller.layouts.app') @section('panel_content')

{{translate('All Rating & Reviews')}}


{{ translate('Product Review & Ratings') }}
@foreach($products as $key => $product) @endforeach
# {{translate('Product Name')}} {{translate('Rating')}} {{translate('Reviews')}} {{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }}
Image
{{ $product->getTranslation('product_name') }}
{{ $product->rating }} {{ $product->preorderProductreviews->count()}} @if($product->preorderProductreviews()->where('viewed',0)->count() > 0) {{ translate('new') }} @endif
{{ $products->appends(request()->input())->links() }}
@endsection @section('script') @endsection