PHPackages                             whossun/uikit-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. whossun/uikit-notify

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

whossun/uikit-notify
====================

uikit notify for laravel

1621[1 PRs](https://github.com/whossun/uikit-notify/pulls)PHP

Since Feb 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/whossun/uikit-notify)[ Packagist](https://packagist.org/packages/whossun/uikit-notify)[ RSS](/packages/whossun-uikit-notify/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

uikit-notify
============

[](#uikit-notify)

### install

[](#install)

In order to install uikit-notify, just add

> "whossun/uikit-notify": "dev-master"

to your composer.json. Then run composer install or composer update.

Add the service provider to `config/app.php`

```
Whossun\Notify\NotifyServiceProvider::class,
```

Optionally include the Facade in config/app.php if you'd like.

```
'Notify'  => Whossun\Notify\Facades\Notify::class,
```

### Options

[](#options)

You can set custom options for Reminder. Run:

```
php artisan vendor:publish

```

to publish the config file for notify.

### Basic

[](#basic)

- Notify::info('message', \['options'\]);
- Notify::success('message', \['options'\]);
- Notify::warning('message', \['options'\]);
- Notify::danger('message', \['options'\]);
- Notify()-&gt;info('message', \['options'\]);

```
