|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/sld.edukrypt.app/config/ |
Upload File : |
<?php
return [
/*
|--------------------------------------------------------------------------
| Notify Theme
|--------------------------------------------------------------------------
|
| You can change the theme of notifications by specifying the desired theme.
| By default the theme light is activated, but you can change it by
| specifying the dark mode. To change theme, update the global variable to `dark`
|
*/
'theme' => env('NOTIFY_THEME', 'light'),
/*
|--------------------------------------------------------------------------
| Demo URL
|--------------------------------------------------------------------------
|
| if true you can access to the demo documentation of the notify package
| here: http://localhost:8000/notify/demo, by default is true
|
*/
'demo' => true,
/*
|--------------------------------------------------------------------------
| Notification timeout
|--------------------------------------------------------------------------
|
| Defines the number of seconds during which the notification will be visible.
|
*/
'timeout' => 5000,
/*
|--------------------------------------------------------------------------
| Preset Messages
|--------------------------------------------------------------------------
|
| Define any preset messages here that can be reused.
| Available model: connect, drake, emotify, smiley, toast
|
*/
'preset-messages' => [
'user-updated' => [
'message' => 'The user has been updated successfully.',
'type' => 'success',
'model' => 'connect',
'title' => 'User Updated',
],
'user-deleted' => [
'message' => 'The user has been deleted successfully.',
'type' => 'success',
'model' => 'connect',
'title' => 'User Deleted',
],
],
];