'All the Laravel schedul Command is not running. Only Firth Schedule Command is running. But Others is not running

Here is my code:

protected function schedule(Schedule $schedule) <br />
    { <br />
        $schedule->command('queue:work')->everyMinute(); // (this is running) <br />
        $schedule->command('websockets:serve')->everyMinute(); // (but its is not running) <br />
    } <br />

And the logs are:

[2022-04-10T10:55:00+00:00] Execution #1 output:
[2022-04-10T10:55:00+00:00] Running scheduled command: "C:\xampp\php\php.exe" "artisan" queue:work > "NUL" 2>&1
 <br /> <br />


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source