PHPackages                             bluora/laravel-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. bluora/laravel-slack

Abandoned → [hnhdigital-os/laravel-slack](/?search=hnhdigital-os%2Flaravel-slack)Library[Utility &amp; Helpers](/categories/utility)

bluora/laravel-slack
====================

Laravel integration for the hnhdigital-os/php-slack package.

013PHP

Since Jul 4Pushed 8y agoCompare

[ Source](https://github.com/bluora/laravel-slack)[ Packagist](https://packagist.org/packages/bluora/laravel-slack)[ RSS](/packages/bluora-laravel-slack/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

```
   _____ _            _       __             _                               _
  / ____| |          | |     / _|           | |                             | |
 | (___ | | __ _  ___| | __ | |_ ___  _ __  | |     __ _ _ __ __ ___   _____| |
  \___ \| |/ _` |/ __| |/ / |  _/ _ \| '__| | |    / _` | '__/ _` \ \ / / _ \ |
  ____) | | (_| | (__|   <  | || (_) | |    | |___| (_| | | | (_| |\ V /  __/ |
 |_____/|_|\__,_|\___|_|\_\ |_| \___/|_|    |______\__,_|_|  \__,_| \_/ \___|_|

```

Provides [Slack](https://github.com/bluora/php-slack) for Laravel.

[![Latest Stable Version](https://camo.githubusercontent.com/d78b15ce2d6cde95fb06ac4135cd2b99cf9c2f32ca0a39f064d3214e0a36ab47/68747470733a2f2f706f7365722e707567782e6f72672f626c756f72612f6c61726176656c2d736c61636b2f762f737461626c652e737667)](https://packagist.org/packages/bluora/laravel-slack) [![Total Downloads](https://camo.githubusercontent.com/e12a1de9e9ccac0f4516fe931cd3d77e1d22c374a5fed869b03fc689ec13ed6b/68747470733a2f2f706f7365722e707567782e6f72672f626c756f72612f6c61726176656c2d736c61636b2f646f776e6c6f6164732e737667)](https://packagist.org/packages/bluora/laravel-slack) [![Latest Unstable Version](https://camo.githubusercontent.com/c4a3f5f502b9045eb4032adb30d9b40889570134a3a08bb0b49d21077e7ff5a1/68747470733a2f2f706f7365722e707567782e6f72672f626c756f72612f6c61726176656c2d736c61636b2f762f756e737461626c652e737667)](https://packagist.org/packages/bluora/laravel-slack) [![Built for Laravel](https://camo.githubusercontent.com/ddd4a07bb769306a9338cffde2032c289e4d43d43ac346122709465a47cdff3f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d677265656e2e737667)](https://laravel.com/) [![License](https://camo.githubusercontent.com/df09a37810e3894f16a15d75edfb101ad42a72a09b64c3837b4d1aaa2e741c28/68747470733a2f2f706f7365722e707567782e6f72672f626c756f72612f6c61726176656c2d736c61636b2f6c6963656e73652e737667)](https://packagist.org/packages/bluora/laravel-slack)

[![StyleCI](https://camo.githubusercontent.com/25941084edc2e8bf2a826ebcee83ebb66d6de7579a7a2f127fa105e62eb8b7b9/68747470733a2f2f7374796c6563692e696f2f7265706f732f39333032303534312f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/93020541) [![Issue Count](https://camo.githubusercontent.com/f9e038ffe2677677d818999273167fa328812293895dad53d6fdfe24cdebef31/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f626c756f72612f6c61726176656c2d736c61636b2f6261646765732f69737375655f636f756e742e737667)](https://codeclimate.com/github/bluora/laravel-slack) [![Code Climate](https://camo.githubusercontent.com/8ff5562c2a8eb09cf0fd3596e75827730bc586479a1a1ba30b3ea6405bd58a85/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f626c756f72612f6c61726176656c2d736c61636b2f6261646765732f6770612e737667)](https://codeclimate.com/github/bluora/laravel-slack)

This package has been adapted by H&amp;H|Digital, an Australian botique developer. Visit us at [hnh.digital](http://hnh.digital).

Install
-------

[](#install)

Via composer:

`$ composer require bluora/laravel-slack dev-master`

Enable the service provider by editing config/app.php:

```
    'providers' => [
        ...
        Bluora\LaravelSlack\ServiceProvider::class,
        ...
    ];
```

Enable the facade by editing config/app.php:

```
    'aliases' => [
        ...
        'Slack' => Bluora\LaravelSlack\Facade::class,
        ...
    ];
```

Then [create an incoming webhook](https://my.slack.com/services/new/incoming-webhook) for each Slack team you'd like to send messages to. You'll need the webhook URL(s) in order to configure this package.

Finally, publish the config file with `php artisan vendor:publish`. You'll find it at `config/slack.php`.

Configuration
-------------

[](#configuration)

The config file comes with defaults and placeholders. Configure at least one team and any defaults you'd like to change.

Usage
-----

[](#usage)

```
// Send a message to the default channel
Slack::send('Hello world!');

// Send a message to a different channel
Slack::to('#accounting')->send('Are we rich yet?');

// Send a private message
Slack::to('@username')->send('psst!');
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/bluora/laravel-slack/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Rocco Howard](https://github.com/therocis)
- [All Contributors](https://github.com/bluora/laravel-slack/contributors)

License
-------

[](#license)

The BSD 2-clause. Please see [License File](https://github.com/bluora/laravel-slack/blob/master/LICENSE) for more information.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/5270e3a3d1add4e39f12dfde3ce549999a26f759d7128056083ab07f475259f2?d=identicon)[bluora](/maintainers/bluora)

---

Top Contributors

[![RoccoHoward](https://avatars.githubusercontent.com/u/227896?v=4)](https://github.com/RoccoHoward "RoccoHoward (21 commits)")[![maknz](https://avatars.githubusercontent.com/u/992356?v=4)](https://github.com/maknz "maknz (3 commits)")

### Embed Badge

![Health badge](/badges/bluora-laravel-slack/health.svg)

```
[![Health](https://phpackages.com/badges/bluora-laravel-slack/health.svg)](https://phpackages.com/packages/bluora-laravel-slack)
```

###  Alternatives

[cubear/finder

Finder is a Drupal 8 module to help users find services which meet their criteria

404.2k](/packages/cubear-finder)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
