{{ __('Backup') }}

@include('account.backup._nav') @if(session('status'))
{{ session('status') }}
@endif {{-- Active batch progress card --}} @if($activeBatch)

Batch Restore In Progress

@csrf

Loading progress…

@endif {{-- Filters --}}
@if(request()->hasAny(['operation','status'])) Clear @endif
{{-- Operations table --}}
@if($operations->isEmpty())

No operations found.

@else
@foreach($operations as $op) @php $status = $op->getStatus(); @endphp @endforeach
Operation Entity Remote ID Pattern Status Dispatched Actions
{{ $op->operation }} @include('account.backup._entity_badge', ['type' => $op->entity_type]) @if($op->operation === 'restore_batch') batch @else @php $rid = $op->payload['remote_id'] ?? null; @endphp {{ $rid ? substr($rid, 0, 8).'…' : '—' }} @endif {{ $op->pattern ?? '—' }} @include('account.backup._status_badge', ['status' => $status]) @if($op->conflict_reason)

{{ $op->conflict_reason }}

@endif
{{ $op->created_at?->diffForHumans() ?? '—' }} @if($status === 'pending' || $op->operation === 'restore_batch' && $status !== 'complete')
@csrf
@endif @if(in_array($status, ['failed', 'conflict']))
@csrf
@endif
{{ $operations->links() }}
@endif