Introduction
The Laravel documentation covers all the information you need to configure Cron Jobs on your hosting machine. Some years ago we were required to define an entry on the server for each task we needed to schedule. Now with Laravel we can simply define a single entry that interacts with the Schedule object, which will take care to run the tasks that are due.
The only Cron entry needed on the server, is the following
* * * * * php /path/to/artisan schedule:run >> …