Laravel queues not working

后端 未结 9 1014
梦谈多话
梦谈多话 2020-12-31 01:02

I am using laravel queues for commenting on the facebook post. When ever i recieve data from facebook webhook, based on the recieved details i am commenting on the post. To

9条回答
  •  隐瞒了意图╮
    2020-12-31 01:45

    I had the same trouble, if you are using laravel 5.7, use this in .env file

    QUEUE_CONNECTION=database
    

    after, clear config cache like this

    php artisan config:cache
    

提交回复
热议问题