Developer Tools
The cron job manager lets you schedule recurring commands on your server using a visual builder — no need to memorise cron expression syntax.
Open your server and click "Cron Jobs" in the sidebar.
Click the "Add Cron Job" button.
Use the visual schedule builder to select when the job runs (every minute, hourly, daily, weekly, or a custom interval). You can also switch to "Raw" mode and enter a cron expression directly.
Enter the full command to execute. Always use absolute paths — the cron environment does not have the same PATH as your shell session.
* * * * * /usr/bin/php /var/www/mysite.com/artisan schedule:run >> /dev/null 2>&1
Click "Save". The job appears in the list with its schedule, last run time, and status.
Use the toggle switch to pause a cron job without deleting it. Click "Run Now" to execute it immediately for testing.
Watch out
Tips