A settings package which you can store key=value pair in database and access via $app->config->get('settings->your-key')
You can modify the url as flows ,fill key & value ,then generate a new key=value pair which is store is database . and can access by $app->config->get('setting.your-key)
$app->settings->set(key,value)
$app->config('settings.YOUR-KEY')
$app->settings->get(key)
Config::get('settings.YOU-KEY');
- config .env file set dbname db user
- run php artisan migrate
- open broswer and visit yousite
URL Format :http://www.yoursite.com/generate/key/{mykey}/value/{myvalue}
Echo :http://www.yoursite.com/generate/key/{mykey}
- File driver implemention
- Broadcast when data is changed
- install via composer command.