PHPackages                             astrotomic/notifynder-sender-slack - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. astrotomic/notifynder-sender-slack

AbandonedArchivedLibrary[Mail &amp; Notifications](/categories/mail)

astrotomic/notifynder-sender-slack
==================================

Slack Sender for the Notifynder package.

1.1.0(9y ago)222MITPHPPHP &gt;=5.5.0

Since Jan 4Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Astrotomic/notifynder-sender-slack)[ Packagist](https://packagist.org/packages/astrotomic/notifynder-sender-slack)[ RSS](/packages/astrotomic-notifynder-sender-slack/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (3)Dependencies (4)Versions (4)Used By (0)

Notifynder 4 Slack Sender - Laravel 5
=====================================

[](#notifynder-4-slack-sender---laravel-5)

[![GitHub release](https://camo.githubusercontent.com/c6e730ac2c365a95bf8d5ec403b41c2c90f29cb006c597ed1de17159a32f77f3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d736c61636b2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-slack/releases)[![GitHub license](https://camo.githubusercontent.com/942e017bf0672002dd32a857c95d66f28c5900ab541838c6c664442516309c8a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265)](https://raw.githubusercontent.com/astrotomic/notifynder-sender-slack/master/LICENSE)[![GitHub issues](https://camo.githubusercontent.com/7152fdb6ec6d0ecd9ab1f1aa9fdc4a02e5873d67f1fad068e5c9a5ce89583a87/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d736c61636b2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-slack/issues)[![Total Downloads](https://camo.githubusercontent.com/a37b6a4ad6d81a441d68fc5967d0fca64d706c6cbc53c303b66c36fd42ce6b75/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d736c61636b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/astrotomic/notifynder-sender-slack)

[![StyleCI](https://camo.githubusercontent.com/5d2547a9fd71489d851a10d350882f742671a38a2f3bfc7982f6dc5281d47b72/68747470733a2f2f7374796c6563692e696f2f7265706f732f37383031363534372f736869656c64)](https://styleci.io/repos/78016547)

[![Code Climate](https://camo.githubusercontent.com/af67b20ef2b2bfc9a3c02b89a66e4062f609867c9061d570653ac901624ad681/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6769746875622f417374726f746f6d69632f6e6f746966796e6465722d73656e6465722d736c61636b2e7376673f7374796c653d666c61742d737175617265)](https://codeclimate.com/github/Astrotomic/notifynder-sender-slack)

[![Slack Team](https://camo.githubusercontent.com/f11b571e287b4400bb775f6ae4b9ee50ba0a96186697735aa663860d1e2ed179/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736c61636b2d617374726f746f6d69632d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://astrotomic.slack.com)[![Slack join](https://camo.githubusercontent.com/8c57b06b8323408ec318f72a06ae3a99fffdc723d7d404859ce6d3796d4993a5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736c61636b2d6a6f696e2d677265656e2e7376673f7374796c653d736f6369616c)](https://notifynder.signup.team)

Documentation: **[Notifynder Docu](http://notifynder.info)**

---

Installation
------------

[](#installation)

### Step 1

[](#step-1)

```
composer require astrotomic/notifynder-sender-slack

```

### Step 2

[](#step-2)

Add the following string to `config/app.php`

**Providers array:**

```
Astrotomic\Notifynder\NotifynderSenderSlackServiceProvider::class,

```

### Step 3

[](#step-3)

Add the following array to `config/notifynder.php`

```
'senders' => [
    'slack' => [
        'webhook' => 'https://hooks.slack.com/...',
        'store' => false, // wether you want to also store the notifications in database
    ],
],
```

Register the sender callback in your `app/Providers/AppServiceProvider.php`

```
