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

Operations Log

{{ $user->name }} — {{ $user->email }}
Back to Records
@if(session('status'))
{{ session('status') }}
@endif
@if($operations->isEmpty())

No operations found for this user.

@else @foreach($operations as $op) @php $status = $op->getStatus(); @endphp @endforeach
# Operation Entity Direction Pattern Status Conflict Reason Created
{{ $op->id }} {{ $op->operation }} {{ $op->entity_type }} {{ $op->direction }} {{ $op->pattern ?? '—' }} @php $badgeClass = match($status) { 'complete' => 'badge-success', 'failed' => 'badge-danger', 'conflict' => 'badge-warning', default => 'badge-secondary', }; @endphp {{ $status }} {{ $op->conflict_reason ?? '—' }} {{ $op->created_at?->toDateTimeString() }}
{{ $operations->links() }}
@endif
@stop