@props(['exhibits']) {{-- The global exhibit library: ordered, reorderable, removable. Labels are derived from position, so reorder/remove renumber everything consistently. --}} @forelse($exhibits as $exhibit)
{{ $exhibit->exhibit_ref }} {{ $exhibit->document?->display_name ?? $exhibit->title ?? 'Exhibit' }} @if($exhibit->page)· p.{{ $exhibit->page }}@endif
@if($exhibit->label)

“{{ \Illuminate\Support\Str::limit($exhibit->label, 140) }}”

@endif
@php $citeCount = $exhibit->references()->count(); @endphp @if($citeCount > 0) Cited by {{ $citeCount }} answer{{ $citeCount === 1 ? '' : 's' }} @else Not cited yet @endif
@empty
No exhibits yet. Add confirmed findings from the evidence tabs.
@endforelse