@extends('appshell::layouts.private') @section('title') Revisions — {{ substr($record->remote_id, 0, 8) }}… @stop @section('content')

Revision History

{{ ucfirst($record->entity_type) }} — {{ $record->remote_id }}
Back to Records
@if(session('status'))
{{ session('status') }}
@endif
Entity Type: {{ $record->entity_type }}
WP Post ID: {{ $record->entity_wp_id ?? '—' }}
Latest Rev: {{ $record->latest_revision }}
Status: @if($record->archived) Archived @else Active @endif
@if($revisions->isEmpty())

No revisions found.

@else @foreach($revisions as $rev) @endforeach
Rev # Triggered By Backed Up At Payload Hash Actions
{{ $rev->revision }} @if($rev->revision === $record->latest_revision) latest @endif {{ $rev->triggered_by ?? '—' }} {{ $rev->backed_up_at ? \Carbon\Carbon::createFromTimestamp($rev->backed_up_at)->toDateTimeString() : '—' }} {{ substr($rev->payload_hash, 0, 16) }}…
@csrf
@endif
@stop