I\'m settin up my offline job server. I\'ve read the documentation but I still don\'t really see the differences between the two commands: artisan queue:work --daemon<
Things have been changed but it was not mentioned in the document
--daemon Run the worker in daemon mode (Deprecated)
now by default php artisan queue:work
runs in daemon mode,
so queue:work
continue processing jobs without ever re-booting the framework
for run it once command is,
php artisan queue:work --once