@extends('admin.layouts.app') @section('heading', 'Reviews') @section('content')
{{ $reviews->total() }} total reviews {{ $reviews->total() - $reviews->where('approved', true)->count() }} pending
All Pending Approval
@forelse($reviews as $review) @empty @endforelse
Product User Rating Review Status Date
{{ $review->product->name ?? 'N/A' }} {{ $review->user->name }} @for($i = 1; $i <= 5; $i++) @endfor {{ Str::limit($review->review, 50) }} @if($review->approved) Approved @else Pending @endif {{ $review->created_at->format('M d, Y') }} @if(!$review->approved)
@csrf
@endif
@csrf @method('DELETE')
No reviews yet.
{{ $reviews->withQueryString()->links() }}
@endsection