cron schedule example
Example 1: cronjob example
//Specify cron frequency
//e.g. run minute 0, every hour
0 */1 * * *
//enter a bash command to the script input field
//e.g. a wget command where the output isn't saved
wget -O- url_here >> /dev/null
Example 2: cron schedule:run
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1