@extends('layouts.app') @section('title', $business->name) @section('page-title', $business->name) @section('content')
{{ strtoupper(substr($business->name, 0, 1)) }}
{{ $business->is_active ? 'Active' : 'Paused' }}

{{ $business->name }}

View public Google profile ↗
@csrf
Edit profile + Add review
Public rating{{ $business->current_rating ?: 'Not set' }}
Public review count{{ number_format($business->total_review_count) }}
Low review records{{ $business->low_reviews_count }}
Last synced{{ $business->last_synced_at?->diffForHumans() ?? 'Never' }}
@csrf

One and two star reviews

Select the specific reviews you want to assess and report.

@forelse ($reviews as $review) @empty @endforelse
ReviewerRatingRisk scoreCase status
{{ $review->reviewer_name }}{{ str($review->review_text)->limit(70) }} @include('partials.stars', ['rating' => $review->rating]) {{ $review->suspicion_score }}% {{ str($review->reportCase?->status ?? 'not prepared')->replace('_', ' ')->title() }} Review →
No low reviews imported

Run a public scan, upload CSV, or add a review manually.

{{ $reviews->links() }}
@endsection