<?php12return [3/*4|--------------------------------------------------------------------------5| Alert Levels6|--------------------------------------------------------------------------7|8| The default sort of alert levels which can be called as functions on the9| AlertsMessageBag class. This gives a convenient way to add certain type's10| of messages.11|12| For example:13|14| Alerts::info($message);15|16*/1718'levels' => [19'info',20'warning',21'danger',22'success',23],2425/*26|--------------------------------------------------------------------------27| Session Key28|--------------------------------------------------------------------------29|30| The session key which is used to store flashed messages into the current31| session. This can be changed if it conflicts with another key.32|33*/3435'session_key' => 'alert_messages',36];373839