@extends('admin.admin')
@section('title')
Review
@endsection
@section('content')
| SL |
Image |
Product |
Rating |
Review |
Status |
Action |
@foreach ($reviews as $sl => $review)
| {{ $sl + 1 }} |
|
{{ $review->product->name ?? '' }} |
{{ $review->rating }} |
{{ $review->review }} |
{{ $review->status == 1 ? 'Active' : 'Inactive' }} |
|
@endforeach
@endsection