📅  最后修改于: 2022-03-11 14:54:17.701000             🧑  作者: Mango
Create a file constants.php inside app/config/ and put your settings in an array:
'administrator'
];
Then anywhere in your controllers or views you can get the value by using Config Facade:
echo Config::get('constants.ADMIN_NAME');