@extends('appshell::layouts.private') @section('title') Backup Records — {{ $user->name }} @stop @section('content')

Backup Records

{{ $user->name }} — {{ $user->email }}
Operations Log Back to User
@if(session('status'))
{{ session('status') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- Filters --}}
@if(request()->hasAny(['entity_type','status'])) Clear @endif
@if($records->isEmpty())

No backup records found for this user.

@else @foreach($records as $record) @endforeach
Entity WP ID Remote ID Rev Last Updated Status Actions
{{ $record->entity_type }} {{ $record->entity_wp_id ?? '—' }} {{ substr($record->remote_id, 0, 8) }}… {{ $record->latest_revision }} {{ $record->updated_at?->diffForHumans() }} @if($record->archived) Archived @else Active @endif Revisions
@csrf
@csrf
{{-- Pattern B signed URL generator --}}
{{ $records->links() }}
@endif
{{-- Signed URL modal --}} @stop