@extends('layouts.admin') @section('content')
| Product | Customer | Rating | Comment | Status | |
|---|---|---|---|---|---|
| {{ $review->product->name }} | {{ $review->customer->name }} | {{ str_repeat('★', $review->rating) }} | {{ $review->comment }} | {{ $review->is_approved ? 'Approved' : 'Pending' }} | @if(!$review->is_approved) @endif |
| No reviews found | |||||