@extends('admin.layouts.app')
@section('title', 'Product Reviews')
@section('page_css')
@endsection
@section('section')
| Product |
{{$product_review->product->product_name ?? ''}} |
{{----}}
{{--| Customer | --}}
{{--{{$product_review->customer->first_name ??''}} {{$product_review->customer->last_name ??''}} | --}}
{{--
--}}
| Author |
{{$product_review->author ?? ''}} |
| Description |
{{$product_review->description ?? ''}} |
| Rating |
{{$product_review->rating ?? ''}} |
| Status |
@if($product_review->status == 1)
Enabled
@else
Disabled
@endif
|
@endsection