12 lines
150 B
PHP
12 lines
150 B
PHP
<?php
|
|
|
|
/**
|
|
* Application locales
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
function appLocales(): array
|
|
{
|
|
return config()->array('app.locales');
|
|
}
|