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

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

fahmiardi/laravel-notification
==============================

Various laravel notifications channels

0.1(9y ago)0228MITPHP

Since Dec 15Pushed 9y ago1 watchersCompare

[ Source](https://github.com/fahmiardi/laravel-notification)[ Packagist](https://packagist.org/packages/fahmiardi/laravel-notification)[ Docs](https://github.com/fahmiardi/laravel-notification)[ RSS](/packages/fahmiardi-laravel-notification/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (3)Versions (2)Used By (0)

More Laravel Notification Providers
===================================

[](#more-laravel-notification-providers)

Available Channels:
-------------------

[](#available-channels)

- AWS SNS (Simple Notification Services), support using `credentials` or `profile`

Install
-------

[](#install)

```
$ composer require fahmiardi/laravel-notification
```

Setup
-----

[](#setup)

Add config to `app/services.php`:

```
return [
    ...
    'sns' => [
        'key' => env('SNS_KEY'),
        'secret' => env('SNS_SECRET'),
        'region' => env('SNS_REGION'),
        'profile' => env('AWS_PROFILE'), // keep this value empty when using credentials
    ],
];
```

Usage
-----

[](#usage)

Use generic:

```
