1Create a file constants.php inside app/config/ and put your settings in an array:
2
3<?php
4//file : app/config/constants.php
5
6return [
7 'ADMIN_NAME' => 'administrator'
8];
9
10Then anywhere in your controllers or views you can get the value by using Config Facade:
11
12echo Config::get('constants.ADMIN_NAME');