Level 50
Hi @watheq , You have to try this command nohup php artisan queue:work --daemon & via terminal or you can add in route like this
Route::get('/queue-work', function() {
Artisan::call('nohup php artisan queue:work --daemon &');
});
Afer the add this section clear your route from server and that just call the route
https://yourdomainname.com/queue-work
Thats it
1 like