PHPackages                             laravel-notification-channels/bearychat - 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. laravel-notification-channels/bearychat

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

laravel-notification-channels/bearychat
=======================================

BearyChat notifications channel for Laravel.

1.4.0(5y ago)227.4k3MITPHPPHP &gt;=5.6.4

Since Aug 28Pushed 4y ago2 watchersCompare

[ Source](https://github.com/laravel-notification-channels/bearychat)[ Packagist](https://packagist.org/packages/laravel-notification-channels/bearychat)[ Docs](https://github.com/laravel-notification-channels/bearychat)[ RSS](/packages/laravel-notification-channels-bearychat/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (9)Used By (0)

BearyChat notifications channel for Laravel
===========================================

[](#bearychat-notifications-channel-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1c1a8c2fd8c2d3c691a57c28a56ca7210f200f1dca6b1b076ac55f92cad9e70a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6265617279636861742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/bearychat)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/a0e7d21fe231c409f8691771fb302c07d653ac4179687e3eb34cd2f6e7deaa0a/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6265617279636861742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/bearychat)[![StyleCI](https://camo.githubusercontent.com/cb29d180e5f7eab3de618bbd481d3bd6a289e5e7e9eec1445b6f7c22fad5edf4/68747470733a2f2f7374796c6563692e696f2f7265706f732f36363635373831322f736869656c64)](https://styleci.io/repos/66657812)[![SensioLabsInsight](https://camo.githubusercontent.com/c3b46e877332573430e58d04fd41b0f4d3c24fabcc012f6714ca3204f148644d/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f36396564656134362d363833372d346337632d396232662d3131633865333230333739622e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/69edea46-6837-4c7c-9b2f-11c8e320379b)[![Quality Score](https://camo.githubusercontent.com/1c4451a5274b50ea8e7e1766b2cab414454dfbf6bbcedaccf694adf97122e695/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6265617279636861742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/bearychat)[![Code Coverage](https://camo.githubusercontent.com/8639dce5ed5bd3658b1b3fe449894e23bae33c6a4726f8108e11c4b01f4edfc1/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6265617279636861742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/bearychat/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/8288655e50cbfee5f067cef29fe4a1da42fba440c2a05ca5a5848423bd51f975/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6265617279636861742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/bearychat)

This package makes it easy to send notifications using [BearyChat](https://bearychat.com) with Laravel.

Channel Deprecated
------------------

[](#channel-deprecated)

BearyChat was discontinued. As such, this channel will no longer receive updates and is being deprecated.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the BearyChat service](#setting-up-the-bearychat-service)
- [Usage](#usage)
    - [Basic Usage](#basic-usage)
    - [Routing Notifications](#routing-notifications)
    - [Available Message Methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via [Composer](https://getcomposer.org):

```
$ composer require laravel-notification-channels/bearychat
```

Once the package is installed, you need to register the service provider by adding the following to the `providers` array in `config/app.php`:

```
ElfSundae\BearyChat\Laravel\ServiceProvider::class,
```

This package is based on [laravel-bearychat](https://github.com/ElfSundae/laravel-bearychat), you may publish the config file if you have not done yet:

```
$ php artisan vendor:publish --tag=bearychat
```

### Setting up the BearyChat service

[](#setting-up-the-bearychat-service)

You may create an Incoming Robot in your [BearyChat](https://bearychat.com) team account, and read the [payload format](https://bearychat.com/integrations/incoming).

Usage
-----

[](#usage)

### Basic Usage

[](#basic-usage)

You can now use the channel in the `via()` method inside the Notification class.

```
