mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
17 lines
327 B
PHP
17 lines
327 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
return [
|
|
'name' => 'WCountries',
|
|
|
|
'locale_key' => config('translatable.locale_key', 'locale'),
|
|
|
|
'cache' => [
|
|
'is_cached' => true,
|
|
'big_time' => Carbon::now()->addDays(120),
|
|
'small_time' => Carbon::now()->addDays(7),
|
|
'prefix' => null,
|
|
],
|
|
];
|