In order for automated and scheduled tasks to be performed, you will need to set up a CRON job on your server.
You can usually create CRON jobs from your hosting's control panel (eg. cpanel). You should create a CRON job that calls the command below every minute:
php /change/this/path/artisan schedule:run
If this does not work, the command should be:
/usr/local/bin/php /change/this/path/artisan schedule:run
Replace "change/this/path" in the command above to the folder where you have uploaded app files.
Most tasks will only be performed once a day, regardless of how often CRON job runs.
If "No scheduled commands are ready to run." message is returned by CRON job it means all tasks were already ran for current day.
Path for CRON command on cPanel in the screenshot below would look like this:
/usr/local/bin/php /home/tjh1oger0bl6/public_html/artisan schedule:run