Transaction

View treated documents: who treated each file, their role, and when. Update document status (indexed / captured).

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter log

Clear

Update document status

@csrf

Treatment log ({{ count($treatments ?? []) }})

@if(empty($treatments) || count($treatments) === 0)

No transactions yet. Upload a boundary document or update a document status above.

@else
@foreach($treatments as $t) @php $doc = $t->boundaryDocument; @endphp @endforeach
Document # Title Action Treated by Role Date & time Actions
@if($doc) {{ $doc->document_number }} @else — @endif {{ $doc ? Str::limit($doc->title, 50) : '—' }} {{ $t->action }} {{ $t->user_authority ?? '—' }} {{ $t->role_snapshot ?? '—' }} {{ $t->treated_at?->format('d M Y H:i') ?? '—' }} @if($doc) View Edit @else — @endif
@endif