PHPackages                             zaxxas/laravel-simple-chat-notification - 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. zaxxas/laravel-simple-chat-notification

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

zaxxas/laravel-simple-chat-notification
=======================================

This package is implemented for notifying to specified chat tools (slack, .etc)

v0.9.3(1y ago)0259MITPHPPHP ^8.4.0

Since Feb 26Pushed 1y ago1 watchersCompare

[ Source](https://github.com/zaxxas/laravel-simple-chat-notification)[ Packagist](https://packagist.org/packages/zaxxas/laravel-simple-chat-notification)[ RSS](/packages/zaxxas-laravel-simple-chat-notification/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (4)Versions (9)Used By (0)

Overview
--------

[](#overview)

This repository is a library for Laravel to notify business chat tools. Currently, the following are covered

- Slack (webhook only)
- Teams (webhook only)
- Line ( Line Notify only)

Currently, it can only send notifications synchronously. Asynchronous support will be added in the future.

Usage
-----

[](#usage)

- Move to root directory of target laravel project.
- Run the commands below

    - Install this library.
        - `composer require zaxxas/laravel-simple-chat-notification`.
    - Publish config file.
        - `php artisan vendor:publish --tag=laravel-simple-chat-notification`
- Change source files below

    - app/ServiceProviders/AppServiceProvider.php

    ```
        'providers' => [
            /*
            * Laravel Framework Service Providers...
            */
            Illuminate\Auth\AuthServiceProvider::class,
            ....
            ....
            \Zaxxas\NotifyToChatTools\Providers\NotificationServiceProvider::class, // -> Add this line
        ],

        'aliases' => Facade::defaultAliases()->merge([
            ....
            'InterventionImage' => Intervention\Image\Facades\Image::class,
            'NotifyToChat' => Zaxxas\NotifyToChatTools\Facades\NotificationToChatToolFacade::class, // -> Add this line
        ])->toArray(),

    ```
- Add environment variables to .env file

    variablecontentNOTIFICATION\_TOOL\*Target tool name. One from 'slack', 'teams', 'line'SLACK\_WEBHOOK\_URLWebhook url for slack notificationSLACK\_NOTIFICATION\_CHANNELChannel name for slack notificationSLACK\_NOTIFICATION\_SENDAR\_NAMESendar name for slack notificationTEAMS\_WEBHOOK\_URLWebhook url for TeamsLINE\_API\_ENDPOINTEndpoint url for Line Notify APILINE\_API\_TOKENToken for Line Notify API\* : required
- Add logic of notification (for example, like below.)

    ```
    \NotifyToChat::notify(
        new NotificationMessageContent(
            title: 'sample title',
            message: 'sample message',
            keyValueFields: ['key1' => 'value1', 'key2' => 'value2'],
        )
    );

    ```

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~228 days

Total

4

Last Release

538d ago

PHP version history (2 changes)v0.9.0PHP ^8.1.0

v0.9.3PHP ^8.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/745c2e4f58ee23021440914758580c194dbea91eb02290f34c3ad7a1e4220d19?d=identicon)[zaxxas](/maintainers/zaxxas)

---

Top Contributors

[![zaxxas](https://avatars.githubusercontent.com/u/46424000?v=4)](https://github.com/zaxxas "zaxxas (26 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/zaxxas-laravel-simple-chat-notification/health.svg)

```
[![Health](https://phpackages.com/badges/zaxxas-laravel-simple-chat-notification/health.svg)](https://phpackages.com/packages/zaxxas-laravel-simple-chat-notification)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[illuminate/http

The Illuminate Http package.

11937.9M6.9k](/packages/illuminate-http)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[illuminate/mail

The Illuminate Mail package.

5910.6M498](/packages/illuminate-mail)

PHPackages © 2026

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