22 lines
729 B
PHP
22 lines
729 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| User Defined Variables
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is a set of variables that are made specific to this application
|
|
| that are better placed here rather than in .env file.
|
|
| Use config('your_key') to get the values.
|
|
|
|
|
*/
|
|
|
|
// 'company_name' => env('COMPANY_NAME','Acme Inc'),
|
|
// 'company_email' => env('COMPANY_email','contact@acme.inc'),
|
|
|
|
'prod_private_server_ip' => env('http://localhost', 'http://localhost'),
|
|
'uploads' => env('http://localhost/uploads/images/', 'http://localhost/uploads/images/'), // local
|
|
|
|
]; |