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

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

laravel-teams-notification/laravel-teams-notification
=====================================================

A Laravel package that integrates Microsoft Teams notification.

v1.0.2(3y ago)19MITPHPPHP ^8.1

Since Apr 5Pushed 2y ago1 watchersCompare

[ Source](https://github.com/isaacdarcilla/laravel-teams-notification)[ Packagist](https://packagist.org/packages/laravel-teams-notification/laravel-teams-notification)[ Docs](https://github.com/isaacdarcilla/laravel-teams-notification)[ RSS](/packages/laravel-teams-notification-laravel-teams-notification/feed)WikiDiscussions main Synced 1mo ago

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

A simple Laravel package that integrates Microsoft Teams webhook.
-----------------------------------------------------------------

[](#a-simple-laravel-package-that-integrates-microsoft-teams-webhook)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cf7919d297d8504dd35248f59c461081f3084894d83a5a0666d3a750127c7b06/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d7465616d732d6e6f74696669636174696f6e2f6c61726176656c2d7465616d732d6e6f74696669636174696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-teams-notification/laravel-teams-notification)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c37dcdc0fd73efbdbd5a657f670a6cd218d4fe0fbd41722e3098f0866419002d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f697361616364617263696c6c612f6c61726176656c2d7465616d732d6e6f74696669636174696f6e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/isaacdarcilla/laravel-teams-notification/actions?query=workflow%3Arun-tests+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/ab897bfdfafa5f5ee995df0e0bf9dd40273694761650683e5c97cf63e7e1ee3f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d7465616d732d6e6f74696669636174696f6e2f6c61726176656c2d7465616d732d6e6f74696669636174696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-teams-notification/laravel-teams-notification)

#### Installation

[](#installation)

You can install the package via composer:

```
composer require laravel-teams-notification/laravel-teams-notification
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-teams-notification-config"
```

This is the contents of the published config file:

```
return [
    /*
    |--------------------------------------------------------------------------
    | Webhook URL
    |--------------------------------------------------------------------------
    |
    | The webhook URL where we post a request
    | You can generate test webhook URL in https://typedwebhook.tools/
    | or through MS Teams Incoming WebHook
    |
    */
    'webhook_url' => env('WEBHOOK_URL', 'your_webhook_url'),
];
```

Then, you can add `WEBHOOK_URL` in your `.env` file. More information about how to setup webhook in MS teams in this [link](https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook?tabs=dotnet).

#### Usage

[](#usage)

```
TeamsNotification::create()
    ->webHookUrl('your_webhook_url')
    ->payload([
        'type' => 'MessageCard',
        'context' => 'https://schema.org/extensions',
        'themeColor' => '0076D7',
        'summary' => 'Hello, World',
        'sections' => [
            [
                'activityTitle' => 'Hello, World!',
            ]
        ]
    ])
    ->dispatch();
```

#### Screenshot

[](#screenshot)

More samples and screenshot of how the message should look can be found in `screenshots` folder.

#### Testing

[](#testing)

```
composer test
```

#### Credits

[](#credits)

- [Isaac D. Arcilla](https://github.com/isaacdarcilla)

#### License

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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 ~2 days

Total

3

Last Release

1130d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/75c699cab69fff2a68ff1a51590244246e57e2ac2c9b86f3f73ebbeec2d46d60?d=identicon)[isaacdarcilla](/maintainers/isaacdarcilla)

---

Top Contributors

[![isaacdarcilla](https://avatars.githubusercontent.com/u/22732118?v=4)](https://github.com/isaacdarcilla "isaacdarcilla (14 commits)")

---

Tags

hookslaravelmsmsteamsnotificationphpwebhooklaravelnotificationlaravel-teams-notification

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/laravel-teams-notification-laravel-teams-notification/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[spatie/laravel-mailcoach-sdk

An SDK to easily work with the Mailcoach API in Laravel apps

41290.2k1](/packages/spatie-laravel-mailcoach-sdk)[wnx/laravel-sends

Keep track of outgoing emails in your Laravel application.

200427.3k](/packages/wnx-laravel-sends)

PHPackages © 2026

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