PHPackages                             webmaster-hm/laravel-notify81 - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. webmaster-hm/laravel-notify81

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

webmaster-hm/laravel-notify81
=============================

v1.0.5(2y ago)0172MITPHPPHP ^7.2|^8.0|^8.1

Since Jan 11Pushed 2y agoCompare

[ Source](https://github.com/webmaster-hm/laravel-notify81)[ Packagist](https://packagist.org/packages/webmaster-hm/laravel-notify81)[ Docs](https://github.com/webmaster-hm/laravel-notify81)[ RSS](/packages/webmaster-hm-laravel-notify81/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (9)Versions (7)Used By (0)

Laravel 5 Notify
================

[](#laravel-5-notify)

[![Latest Version](https://camo.githubusercontent.com/a89c70fb8aa850adf6680d87f06fbefce4e2530760d068e8cef4f47b9f05073a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f74796c657263643130302f6c61726176656c2d6e6f746966792e7376673f7374796c653d666c61742d737175617265)](https://github.com/tylercd100/laravel-notify/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/bc9fd542540934a0f4f76d424eca6cbeb8daaf23bc46ea3a105c03866f393885/68747470733a2f2f7472617669732d63692e6f72672f74796c657263643130302f6c61726176656c2d6e6f746966792e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tylercd100/laravel-notify)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/fac7260ed8d3b323cfeaab91ed23df3637615d2d5924fca87b198e21c25b38b4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f74796c657263643130302f6c61726176656c2d6e6f746966792f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tylercd100/laravel-notify/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/1c48e91bc431e37b250468c344555e9599c7a88f08e7017bc62439167e7dbd94/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f74796c657263643130302f6c61726176656c2d6e6f746966792f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tylercd100/laravel-notify/?branch=master)[![Dependency Status](https://camo.githubusercontent.com/1c4ac926efb90f2924bb989040a5bf7eedb5476ed59563195a7d1ed8141ed7fb/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3536663332353263333536333065303032396462303138372f62616467652e7376673f7374796c653d666c6174)](https://www.versioneye.com/user/projects/56f3252c35630e0029db0187)[![Total Downloads](https://camo.githubusercontent.com/1bf65ded9260be77cdeafec7217908893a8ce75c6aa74ebdb3a0461d32682a8f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74796c657263643130302f6c61726176656c2d6e6f746966792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tylercd100/laravel-notify)

Laravel Notify is a Laravel 5 package that will let you send notification messages to various services.

Currently supported notification channels via [Monolog](https://github.com/Seldaek/monolog)

- Email
- [Pushover](https://pushover.net/)
- [Slack](https://slack.com/)
- [Fleephook](https://fleep.io/)
- [Flowdock](https://www.flowdock.com/)
- [Plivo](https://www.plivo.com/) an SMS messaging service.
- [Twilio](https://www.twilio.com/) an SMS messaging service.
- [Sentry](https://getsentry.com) via [Sentry SDK for PHP](https://github.com/getsentry/sentry-php)
- [Mailgun](https://mailgun.com)

Version Compatibility
---------------------

[](#version-compatibility)

LaravelLaravel Notify5.1.x1.x5.2.x1.x5.3.x1.x5.4.x1.x5.5.x2.x6.x3.x and 4.x7.x4.x8.x4.xInstallation
------------

[](#installation)

Version 2.x uses [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery). If you are using 1.x you will need to follow these [instructions.](https://github.com/tylercd100/laravel-notify/tree/1.8.5)

Install via [composer](https://getcomposer.org/) - In the terminal:

```
composer require tylercd100/laravel-notify
```

Then you will need to run this in order to copy the config file.

```
php artisan vendor:publish --provider="Tylercd100\Notify\Providers\NotifyServiceProvider"
```

Usage
-----

[](#usage)

After you have changed your configuration file (`config/notify.php`) you can simply use it like so:

```
Notify::debug("This is a debug message!");
Notify::info("This is a info message!");
Notify::notice("This is a notice message!");
Notify::warning("This is a warning message!");
Notify::error("This is a error message!");
Notify::critical("This is a critical message!");
Notify::alert("This is a alert message!");
Notify::emergency("This is a emergency message!");

# Add context
Notify::info("This is a info message with context!",['user'=>$user, 'data'=>$data]);
```

Other Features
--------------

[](#other-features)

Laravel Notify also exposes extra Facades. To use them you will need to add them to your `config/app.php` file in your aliases array.

```
"Pushover"  => Tylercd100\Notify\Facades\Pushover::class,
"Flowdock"  => Tylercd100\Notify\Facades\Flowdock::class,
"FleepHook" => Tylercd100\Notify\Facades\FleepHook::class,
"Slack"     => Tylercd100\Notify\Facades\Slack::class,
"Plivo"     => Tylercd100\Notify\Facades\Plivo::class,
"Twilio"    => Tylercd100\Notify\Facades\Twilio::class,
"Sentry"    => Tylercd100\Notify\Facades\Sentry::class,
"Mailgun"   => Tylercd100\Notify\Facades\Mailgun::class,
```

And then use them like this

```
Slack::info("This is information!");
Pushover::critical("Everything is broken and the server room caught fire!");
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 93.8% 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 ~71 days

Recently: every ~89 days

Total

6

Last Release

859d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a5a60777622e7890245cb03c5ebcdd85a30d2a4f8091cd0696b0f3c4e5308cee?d=identicon)[webmaster-hm](/maintainers/webmaster-hm)

---

Top Contributors

[![tylercd100](https://avatars.githubusercontent.com/u/4522226?v=4)](https://github.com/tylercd100 "tylercd100 (45 commits)")[![qodeboy](https://avatars.githubusercontent.com/u/543453?v=4)](https://github.com/qodeboy "qodeboy (1 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")[![tortuetorche](https://avatars.githubusercontent.com/u/5038872?v=4)](https://github.com/tortuetorche "tortuetorche (1 commits)")

---

Tags

laravelnotificationsmonologtylercd100

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/webmaster-hm-laravel-notify81/health.svg)

```
[![Health](https://phpackages.com/badges/webmaster-hm-laravel-notify81/health.svg)](https://phpackages.com/packages/webmaster-hm-laravel-notify81)
```

###  Alternatives

[tylercd100/lern

LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will record exceptions into a database and will notify you via Email, Pushover or Slack.

438153.4k3](/packages/tylercd100-lern)[laravel/nightwatch

The official Laravel Nightwatch package.

3486.1M13](/packages/laravel-nightwatch)[tylercd100/laravel-notify

12152.1k1](/packages/tylercd100-laravel-notify)[illuminated/console-logger

Logging and Notifications for Laravel Console Commands.

8674.9k](/packages/illuminated-console-logger)[naoray/laravel-github-monolog

Log driver to store logs as github issues

10619.4k](/packages/naoray-laravel-github-monolog)[shaffe/laravel-mail-log-channel

A package to support logging via email in Laravel

1286.2k](/packages/shaffe-laravel-mail-log-channel)

PHPackages © 2026

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