Task updated successfully!
| Job | Queued At | Status | Actions | |
|---|---|---|---|---|
|
|
{{ $job['job_class'] }}
{{ $job['queue'] }}
|
{{ $job['created_at_human'] }}
{{ $job['created_at_formatted'] }}
|
@if($job['reserved_at'])
Processing
@else
Pending
@endif
@if($job['attempts'] > 0)
Attempt {{ $job['attempts'] }}
@endif
|
|
|
Job Details
Job ID: {{ $job['id'] }}
Queue: {{ $job['queue'] }}
Attempts: {{ $job['attempts'] }}
Available At: {{ $job['available_at_human'] }}
@if($job['max_tries'])
Max Tries: {{ $job['max_tries'] }}
@endif
@if($job['timeout'])
Timeout: {{ $job['timeout'] }}s
@endif
@if($job['backoff'])
Backoff: {{ $job['backoff'] }}s
@endif
Job Parameters
{{ json_encode($job['job_data'], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
|
||||
| Job | Failed At | Error | Actions | |
|---|---|---|---|---|
|
|
{{ $job['job_class'] }}
{{ $job['queue'] }}
|
{{ $job['failed_at_human'] }}
{{ $job['failed_at_formatted'] }}
|
{{ $job['exception_message'] }}
|
|
|
Job Details
Connection: {{ $job['connection'] }}
Queue: {{ $job['queue'] }}
UUID:
@if($job['max_tries'])
{{ $job['uuid'] }}Max Tries: {{ $job['max_tries'] }}
@endif
@if($job['timeout'])
Timeout: {{ $job['timeout'] }}s
@endif
@if($job['backoff'])
Backoff: {{ $job['backoff'] }}s
@endif
Job Parameters
{{ json_encode($job['job_data'], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
Exception Stack Trace
{{ $job['exception'] }}
|
||||
| Command | Schedule | Next Run | Status | Actions |
|---|---|---|---|---|
|
{{ $task->name }}
{{ $task->command }}
{{ $task->description }}
|
{{ $task->getScheduleDescription() }}
{{ $task->cron_expression }}
|
@if($task->is_enabled && isset($nextRunTimes[$task->command]))
{{ $nextRunTimes[$task->command] }}
@elseif(!$task->is_enabled)
Disabled
@else
Not scheduled
@endif
|
@if($task->is_enabled)
Enabled
@else
Disabled
@endif
@if($task->without_overlapping)
No Overlap
@endif
|
|
No scheduled tasks found.
Run sail artisan db:seed --class=ScheduledTaskSeeder to populate.
Configure when this task should run
Task will run on schedule when enabled
{{ $message }}
@enderrorFormat: minute hour day month weekday