@php $reviewed = $totalItems - $toReview; $pct = $totalItems > 0 ? round($reviewed / $totalItems * 100) : 0; $canExport = $confirmed > 0; @endphp {{-- Header --}}
Back to client
Evidence Review
{{ $client->fullName ?? $client->display_name ?? 'Client' }}
@if($toReview > 0 && $reviewUrl) @if($canExport) Export summary @else @endif Review {{ $toReview }} finding{{ $toReview === 1 ? '' : 's' }} @else @if($totalItems > 0) Review complete @endif @if($canExport) Export summary @elseif($totalItems > 0) @endif @endif
@if($totalItems > 0 || $productiveFiles > 0 || $excludedFiles > 0) @include('components.client.partials.evidence-summary-strip', [ 'totalItems' => $totalItems, 'confirmed' => $confirmed, 'toReview' => $toReview, 'dismissed' => $dismissed, 'reviewed' => $reviewed, 'pct' => $pct, ]) @endif @include('components.client.partials.evidence-review-body')