Files
einundzwanzig-app/config/w-countries.php
2025-11-22 23:53:15 +01:00

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,
],
];