Update app.php
This commit is contained in:
parent
7b65013633
commit
ac210bdfb5
|
@ -1,5 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
function locales($key, $default)
|
||||||
|
{
|
||||||
|
$value = env($key, $default);
|
||||||
|
$array = explode(',', $value);
|
||||||
|
$trimmedArray = array_map('trim', $array);
|
||||||
|
return $trimmedArray;
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -11,7 +19,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'supported_locales' => env('LOCALES', ['de', 'es', 'pt', 'zh', 'ms']),
|
'supported_locales' => locales('LOCALES', 'de, es, pt, zh, ms'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue