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

{{ trans('Failed Job') }} {{ trans('Failed Job') }}...

{{ trans('Failed Job') }}

@if (count($errors) > 0) @if($errors->any()) @endif @endif
@if (count($jobs) > 0) @foreach ($jobs as $key => $job) @endforeach @endif
{{ trans('labels.ID') }} {{ trans('Queue') }} {{ trans('Payload') }} Exception failed_at
{{ $job->id}} {{ $job->queue}}
{{ Str::limit($job->payload, 90) }}
@if (strlen($job->payload) > 90) Read More @endif
{{ Str::limit($job->exception, 90) }}
@if (strlen($job->exception) > 90) Read More @endif
{{ $job->failed_at }}
@endsection