22
config/settings.php
Normal file
22
config/settings.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
return array(
|
||||
// which type of store to use.
|
||||
// valid options: 'json', 'database'
|
||||
'store' => 'json',
|
||||
|
||||
// if the json store is used, give the full path to the .json file
|
||||
// that the store writes to.
|
||||
'path' => storage_path().'/settings.json',
|
||||
|
||||
// if the database store is used, set the name of the table used..
|
||||
'table' => 'settings',
|
||||
|
||||
// If the database store is used, you can set which connection to use. if
|
||||
// set to null, the default connection will be used.
|
||||
'connection' => null,
|
||||
|
||||
// If you want to use custom column names in database store you could
|
||||
// set them in this configuration
|
||||
'keyColumn' => 'key',
|
||||
'valueColumn' => 'value'
|
||||
);
|
||||
Reference in New Issue
Block a user