@extends('admin.layouts.app') @section('title', 'Reviews') @section('page-title', 'Product Reviews') @section('content')
Manage customer reviews and ratings
| Product | Customer | Rating | Comment | Status | Actions |
|---|---|---|---|---|---|
| {{ $review->product->name ?? 'N/A' }} | {{ $review->reviewer_name }} |
@for($i = 1; $i <= 5; $i++)
@endfor
|
{{ $review->comment }} | @if($review->status == 'approved') Approved @elseif($review->status == 'rejected') Rejected @else Pending @endif |
@if($review->status != 'approved')
@endif
@if($review->status != 'rejected')
@endif
|
|
No reviews found |
|||||