PHPackages                             pixelcostudios/notify - 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. pixelcostudios/notify

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

pixelcostudios/notify
=====================

toastr.js, pnotify.js flush notifications for Laravel

v1.3(2y ago)024MITPHPPHP &gt;=8.1

Since Oct 4Pushed 2y agoCompare

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

READMEChangelog (2)DependenciesVersions (5)Used By (0)

Notify notification package support Laravel 10
==============================================

[](#notify-notification-package-support-laravel-10)

👀 This package helps you to add notifications to your Laravel projects.

[![notify](https://user-images.githubusercontent.com/10859693/39634578-1a9f121a-4fb3-11e8-8863-d64fad42901b.png)](https://user-images.githubusercontent.com/10859693/39634578-1a9f121a-4fb3-11e8-8863-d64fad42901b.png)

Install
-------

[](#install)

You can install the package using composer

```
$ composer require pixelcostudios/notify
```

Usage:
------

[](#usage)

Include jQuery and your notification plugin assets in your view template:

1. Add your styles links tag or `@notify_css`
2. Add your scripts links tags or `@notify_js`
3. Add `@notify_render` to render your notification
4. use `notify()` helper function inside your controller to set a toast notification for info, success, warning or error

```
// Display an info toast with no title
notify()->info('Are you the 6 fingered man?')
```

as an example:

```
