Edit Cron Job

Update the scheduled task configuration.

@if($cronjob->last_run)

Last Execution

{{ $cronjob->last_run->format('M d, Y H:i:s') }} ({{ $cronjob->last_run->diffForHumans() }}) @if($cronjob->last_status === 'success') Success @elseif($cronjob->last_status === 'failed') Failed @endif @if($cronjob->last_duration) — Duration: {{ $cronjob->last_duration_formatted }} @endif

@if($cronjob->last_message)

{{ $cronjob->last_message }}

@endif
@endif {{-- UPDATE FORM --}}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
A descriptive name for this cron job.
@error('method')
{{ $message }}
@enderror
Format: ClassName/methodName — The class should be in app/Crons/ directory.
@if(!empty($availableCrons))

Available Methods (Click to use)

@foreach($availableCrons as $class => $methods) @foreach($methods as $method) {{ $class }}/{{ $method }} @endforeach @endforeach
@endif
@error('schedule')
{{ $message }}
@enderror
How often should this cron job run?
@error('description')
{{ $message }}
@enderror
status) ? 'checked' : '' }}>
Cancel
{{-- END UPDATE FORM --}} {{-- DELETE FORM (Separate, outside update form) --}}
@csrf @method('DELETE')
{{-- END DELETE FORM --}}