{{ __('Reviews') }}

{{ __('Manage customer product reviews by status, product, order, and customer.') }}

{{ __('Total: :count', ['count' => number_format($totalReviews)]) }}
{{ __('Add review') }}
@if (session('status'))
{{ session('status') }}
@endif
@forelse ($reviews as $review) @empty @endforelse
{{ __('Review') }} {{ __('Product') }} {{ __('Rating') }} {{ __('Status') }} {{ __('Action') }}
{{ $review->customer_name }}
{{ str($review->body)->limit(90) }}
{{ $review->product?->name }} {{ str_repeat('★', $review->rating) }} {{ $review->statusLabel() }}
{{ __('View') }} {{ __('Edit') }}
@csrf @method('DELETE')
{{ __('No reviews found.') }}
{{ $reviews->links() }}