
CronTabManager
Run scripts on a schedule automatically


Cron jobs run from the commands you create; all scheduled tasks are stored in the database.
php artisan crontab:add --command=mysupertaskphp artisan schedule:list
# ------ -------- ------------- --------------------- ----------------- -----------
# Path Active Crontab Next run Diff Comment
# ------ -------- ------------- --------------------- ----------------- -----------
# demo Yes */1 * * * * 2024-11-30 05:48:00 via 6 seconds Demo task
# ------ -------- ------------- --------------------- ----------------- -----------Jobs that match the current time will run.
php artisan schedule:run
# // Demo task...
#
# [INFO] [1 1 * * *] mysupertask.php runIn the Manager you can configure crontab timing: manager