2019-02-27 20:14:53 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Util\Localization;
|
|
|
|
|
|
|
|
use Cache;
|
|
|
|
use Illuminate\Support\Arr;
|
|
|
|
|
|
|
|
class Localization {
|
|
|
|
|
|
|
|
public static function languages()
|
|
|
|
{
|
2019-03-05 12:16:21 -07:00
|
|
|
return Cache::remember('core:localization:languages', now()->addDays(1), function() {
|
2019-02-27 20:14:53 -07:00
|
|
|
$dir = resource_path('lang');
|
2021-10-30 00:56:48 -06:00
|
|
|
return Arr::flatten(array_diff(scandir($dir), array('..', '.', 'vendor', '.DS_Store')));
|
2019-02-27 20:14:53 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-30 00:56:48 -06:00
|
|
|
}
|