After you've published the config file config/notify.php
, you can customize the settings :
<?php
return [
/* -----------------------------------------------------------------
| Default Store
| -----------------------------------------------------------------
*/
'default' => 'session',
/* -----------------------------------------------------------------
| Supported Stores
| -----------------------------------------------------------------
*/
'stores' => [
'session' => [
'class' => Arcanedev\Notify\Stores\SessionStore::class,
'options' => [
'key' => 'notifications'
],
],
],
];
You can create you own store like database
or redis
store for your notifications.