I\'ve set up the following Laravel commands:
protected function schedule(Schedule $schedule) {
$schedule->command(\'command:daily-reset\')->dai
To run the Cron Commands on the local server, follow these steps:
"* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1"
Done !!
Now, wait for cron to process your command. Cheers!!
Reference- https://laravel.com/docs/7.x/scheduling#introduction