@if(config('queue-monitor.ui.show_custom_data')) @endif @if(config('queue-monitor.ui.allow_deletion') || config('queue-monitor.ui.allow_retry')) @endif @forelse($jobs as $job) @if(config('queue-monitor.ui.show_custom_data')) @endif @if(config('queue-monitor.ui.allow_deletion') || config('queue-monitor.ui.allow_retry')) @endif @empty @endforelse
@lang('Status') @lang('Job') @lang('Details')@lang('Custom Data')@lang('Progress') @lang('Duration') @lang('Started') @lang('Error')
@include('queue-monitor::partials.job-status', ['status' => $job->status]) {{ $job->getBaseName() }} #{{ $job->job_id }}
@lang('Queue'): {{ $job->queue }}
@lang('Attempt'): {{ $job->attempt }}
@if($job->retried)
@lang('Retried')
@endif
@if($job->progress !== null)
{{ $job->progress }}%
@else - @endif
{{ $job->getElapsedInterval()->format('%H:%I:%S') }} {{ $job->started_at?->diffForHumans() }} @if($job->status != \romanzipp\QueueMonitor\Enums\MonitorStatus::SUCCEEDED && $job->exception_message !== null) @else - @endif @if(config('queue-monitor.ui.allow_retry') && $job->canBeRetried())
@csrf @method('patch')
@endif @if(config('queue-monitor.ui.allow_deletion') && $job->isFinished())
@csrf @method('delete')
@endif
@lang('No Jobs')
@lang('Showing') @if($jobs->total() > 0) {{ $jobs->firstItem() }} @lang('to') {{ $jobs->lastItem() }} @lang('of') @endif {{ $jobs->total() }} @choice('result|results', $jobs->total())