@extends('layouts.app') @section('title', 'Review assessment') @section('page-title', 'Review assessment') @section('content')

Assess before reporting

Automated signals are prompts for human review, not proof of a violation.

Edit details
{{ strtoupper(substr($review->reviewer_name, 0, 1)) }}

{{ $review->reviewer_name }}

{{ $review->business->name }} · {{ $review->reviewed_at?->format('M j, Y') ?? 'Date not provided' }}

@include('partials.stars', ['rating' => $review->rating])
{{ $review->review_text ?: 'This reviewer left a rating without a written comment.' }}

Does this review appear to violate a policy?

Prepare a case only when you can select a valid category and provide factual evidence. A negative experience alone is not removable.

@if($review->reportCase) Open prepared case @else Prepare report case @endif

Review activity

Recorded actions for this review

Full activity record
@forelse($review->auditLogs->sortByDesc('id') as $log)
{{ $log->description }}{{ $log->created_at->format('M j, Y H:i:s') }} · {{ $log->user?->name ?? 'System' }}
@empty

No recorded activity for this review yet.

@endforelse
@csrf @method('DELETE')
@endsection