1
votes

I'm using sqs queue in my laravel. Right now I have successsfully pushed my queue job to sqs server as shown in the picture below : enter image description here

The problem is, the message is never got executed. So how to process this message on SQS...?? Thanks a lot

1

1 Answers

2
votes

I think you forgot to run the queue daemon. Try to run php artisan queue:listen in the project folder.