v2 first commit

This commit is contained in:
denisdulici
2019-11-16 10:21:14 +03:00
parent 5b23e9c2c4
commit 6d50fa8442
3075 changed files with 3451681 additions and 65594 deletions

View File

@ -12,6 +12,22 @@ return [
*/
'auto_save' => false,
/*
|--------------------------------------------------------------------------
| Cache
|--------------------------------------------------------------------------
|
| Options for caching. Set whether to enable cache, its key, time to live
| in seconds and whether to auto clear after save.
|
*/
'cache' => [
'enabled' => true,
'key' => 'setting',
'ttl' => 21600,
'auto_clear' => true,
],
/*
|--------------------------------------------------------------------------
| Setting driver
@ -49,7 +65,7 @@ return [
|
*/
'json' => [
'path' => storage_path().'/settings.json',
'path' => storage_path() . '/settings.json',
],
/*
@ -81,6 +97,6 @@ return [
|
*/
'required_extra_columns' => [
'company_id'
'company_id',
],
];