@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
first)>
Move up
last)>
Move down
@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
0) wire:confirm="This exhibit is cited by {{ $citeCount }} answer(s). Removing it will delete those citations and renumber the rest. Continue?" @endif>
Remove
@empty
No exhibits yet. Add confirmed findings from the evidence tabs.
@endforelse