@extends('admin.layouts.app')
@section('content')
| Produit | Auteur | Avis | Note | Statut | Date | Actions |
|---|---|---|---|---|---|---|
| @if($review->product) {{ Str::limit($review->product->name, 30) }} @else Produit supprimé @endif |
{{ $review->author_name }}
@if($review->author_email)
{{ $review->author_email }}
@endif
|
{{ Str::limit($review->content, 80) }} |
@for($i = 1; $i <= 5; $i++)
@endfor
|
@if($review->is_approved) Approuvé @else En attente @endif | {{ $review->created_at->format('d/m/Y') }} | @if(! $review->is_approved) @else @endif |
| Aucun avis. | ||||||