@extends('layouts.app') @section('title', 'Overview') @section('page-title', 'Reputation overview') @section('content')

Good afternoon, {{ explode(' ', auth()->user()->name)[0] }}

Here is the current status of your review work.

+ Add business
Businesses{{ $stats['businesses'] }}

Profiles in your workspace

Low reviews{{ $stats['low_reviews'] }}

One and two star records

Flagged signals{{ $stats['suspicious'] }}

Need human assessment

Removed{{ $stats['removed'] }}

Confirmed Google outcomes

%
Actual success rate{{ $stats['success_rate'] === null ? 'No data' : $stats['success_rate'].'%' }}

Removed among decided cases

Recent low reviews

Latest one and two star reviews across all businesses

View all
@forelse ($recentReviews as $review) @empty @endforelse
ReviewerBusinessRatingRiskCase
{{ $review->reviewer_name }}{{ str($review->review_text)->limit(46) }} {{ $review->business->name }} @include('partials.stars', ['rating' => $review->rating]) {{ $review->suspicion_score }}% {{ str($review->reportCase?->status ?? 'not prepared')->replace('_', ' ')->title() }}
No low reviews yet

Add a business, then sync or import its reviews.

i
How removal works

This software organizes evidence and reporting. It does not directly delete customer content. Google removes a review only after confirming a policy violation.

Read Google policy ↗
@endsection