{{ str_repeat('★', $review->rating) }}{{ str_repeat('☆', 5 - $review->rating) }} @if ($review->title) {{ $review->title }} @endif
{{ $review->author?->name }} ({{ $review->author?->email }})
→ {{ $review->subject?->display_name ?? 'Deleted' }}
· {{ $review->created_at->format('d M Y') }}
{{-- Whether there is a real dealing behind it is the
single most useful thing on this screen. --}}
@if ($review->isVerifiedDealing())
About: {{ $review->listing->title }}
@endif{{ $review->body }}
@if ($review->hasReply()){{ $review->reply }}