@extends('layouts.admin.admin')
@section('page-specific-styles')
@endsection
@section('title', 'Job')
@section('content')
{{--
Dispatch All --}}
| Payload |
Attempts |
Created At |
Action |
@foreach ($jobs as $job)
| {{ json_decode($job->payload)->displayName ?? null }} |
{{ $job->attempts }} |
{{ date(config('custom.dfyhia2'), $job->created_at) }}
|
|
@endforeach
Retry All
| Id |
Connection |
Queue |
Payload |
Attempts |
Action |
@foreach ($failed_jobs as $fjob)
| {{ $fjob->id }} |
{{ $fjob->connection }} |
{{ $fjob->queue }} |
{{ $fjob->payload }}
|
{{ $fjob->exception }}
|
{{-- --}}
|
@endforeach
@stop
@section('scripts')
@endsection