{{ __('Backup') }}

@include('account.backup._nav') @if(session('status'))
{{ session('status') }}
@endif {{-- Filters --}}
@if(request()->hasAny(['entity_type','status','search'])) Clear @endif
{{-- Records table --}}
@if($records->isEmpty())

No backup records found.

@else
@foreach($records as $record) @endforeach
Entity WP ID Remote ID Rev Last Backed Up Status Actions
@include('account.backup._entity_badge', ['type' => $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
{{ $records->links() }}
@endif