{{ __('Platform defaults') }}
{{ __('Provisioning failures') }} {{ __('Accounts whose provisioning job exhausted its retries. Retry re-queues a fresh job; the provisioner is idempotent so re-runs only fill the gaps.') }}
{{ __('Back to defaults') }}
@php $failures = $this->failures(); @endphp @if ($failures->isEmpty())
{{ __('No failed provisioning runs. New accounts are receiving their defaults cleanly.') }}
@else
@foreach ($failures as $run) @endforeach
{{ __('Account') }} {{ __('Failed at') }} {{ __('Attempt') }} {{ __('Error') }} {{ __('Action') }}
{{ $run->account?->name ?? __('Account #:n', ['n' => $run->account_id]) }}
{{ $run->account?->slug ?? '—' }}
{{ $run->finished_at?->diffForHumans() ?? $run->queued_at?->diffForHumans() ?? '—' }}
{{ $run->finished_at?->toDateTimeString() }}
#{{ $run->attempt_count }}
{{ $run->error_message ?? __('(no message)') }}
@if ($run->error_class)
{{ $run->error_class }}
@endif
{{ __('Retry') }}
{{ $failures->links() }}
@endif