{{-- Warning Banner --}} {{ __('Important: Cron Job Safety') }} {{ __('Cron jobs execute commands automatically on a schedule. Incorrect usage can cause server overload, send spam, fill disk space, or damage your data. Only add cron jobs if you fully understand what the command does.') }} {{ $this->table }} {{-- Help Section --}} {{ __('Cron Schedule Reference') }} {{ __('Use these common schedule formats when creating custom cron jobs') }}
* * * * * = {{ __('Every minute') }}
*/5 * * * * = {{ __('Every 5 minutes') }}
0 * * * * = {{ __('Every hour') }}
0 0 * * * = {{ __('Daily at midnight') }}
0 0 * * 0 = {{ __('Weekly (Sunday)') }}
0 0 1 * * = {{ __('Monthly (1st)') }}

{{ __('Format:') }} {{ __('minute hour day month weekday') }}