@extends('layouts.admin') @section('title', 'Reviews') @section('content')

Reviews

@foreach($reviews as $r) @endforeach
ProductRatingComment
{{ $r->product?->title ?? '—' }}{{ str_repeat('★', $r->rating) }}{{ $r->comment }}
@csrf @method('DELETE')
{{ $reviews->links() }}
@endsection