laravel-slack icon indicating copy to clipboard operation
laravel-slack copied to clipboard

Queue slack notification

Open bobinwood opened this issue 5 years ago • 1 comments

Is it possible to queue the slack notifications ?

bobinwood avatar Feb 15 '19 09:02 bobinwood

You should be able to create a queued job that sends the notification. Something like this in the queued job:

public function handle()
{
    Slack::to('#channel')->send('message');
}

suwdo avatar May 21 '20 17:05 suwdo