Hello, I have a Laravel 8 project in which I make use of notifications using queues, these are executed by running the "php artisan queue:work" command, I plan to use the project locally using laragon, my question is: Is it possible that these "queues" are executed automatically? without the need to run the "php artisan queue:work" command. What I am looking for is to turn on the computer, run Laravel and that's it, to be able to use the application without the need to execute the command every time. Is this possible?
To keep the queue:work process running permanently in the background, you should use a process monitor such as Supervisor to ensure that the queue worker does not stop running.
With root access, you can do the job a service with systemd.