I\'ve set up the following Laravel commands:
protected function schedule(Schedule $schedule) { $schedule->command(\'command:daily-reset\')->dai
I realized that the problem for me was the below chained method:
->withoutOverlapping()
Once I removed that method, my commands started running and being found by the daemon process.
I think there might be a bug with the method, but my project for now can take a bit overlapping so it's cool.