Convert all env() calls to config() calls
This commit is contained in:
parent
e032cd5861
commit
b4df7a1bbb
10 changed files with 61 additions and 14 deletions
25
config/admin.php
Normal file
25
config/admin.php
Normal 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'),
|
||||
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue