Convert all env() calls to config() calls

This commit is contained in:
Jonny Barnes 2017-02-15 20:44:03 +00:00
parent e032cd5861
commit b4df7a1bbb
10 changed files with 61 additions and 14 deletions

25
config/admin.php Normal file
View file

@ -0,0 +1,25 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Admin Name
|--------------------------------------------------------------------------
|
| The username of the admin account.
*/
'name' => env('ADMIN_NAME'),
/*
|--------------------------------------------------------------------------
| Admin Password
|--------------------------------------------------------------------------
|
| The password of the admin account.
*/
'pass' => env('ADMIN_PASS'),
];