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