Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/prologue/alerts.php
7432 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| Alert Levels
7
|--------------------------------------------------------------------------
8
|
9
| The default sort of alert levels which can be called as functions on the
10
| AlertsMessageBag class. This gives a convenient way to add certain type's
11
| of messages.
12
|
13
| For example:
14
|
15
| Alerts::info($message);
16
|
17
*/
18
19
'levels' => [
20
'info',
21
'warning',
22
'danger',
23
'success',
24
],
25
26
/*
27
|--------------------------------------------------------------------------
28
| Session Key
29
|--------------------------------------------------------------------------
30
|
31
| The session key which is used to store flashed messages into the current
32
| session. This can be changed if it conflicts with another key.
33
|
34
*/
35
36
'session_key' => 'alert_messages',
37
];
38
39