@extends('layouts.admin') @section('content')

Queue operations

Failed Jobs

Review background work that Laravel could not complete. Retry only after the underlying cause has been corrected.

@if($jobs->count())
@csrf
@endif
@forelse($jobs as $job)@php($payload=json_decode($job->payload??'{}',true);$display=$payload['displayName']??$payload['job']??'Queued job';$identifier=$job->uuid??$job->id)

{{ $display }}

Failed
Queue
{{ $job->connection }} / {{ $job->queue }}
Failed
{{ $job->failed_at }}
Identifier
{{ $identifier }}
@csrf
@csrf @method('DELETE')
Technical exception
{{ $job->exception }}
@empty
No failed jobs.

The failed queue is clear.

@endforelse
{{ $jobs->links() }}
@endsection