Looking to hire Laravel developers? Try LaraJobs

laravel-app-settings maintained by a2way

Description
Save data in a table called "app_settings" and retrieve them.
Last update
2015/08/31 06:44 (dev-master)
Links
Downloads
208

Comments
comments powered by Disqus

#A2Way Laravel App Settings ##Installing

  1. Require the package.
composer require a2way/laravel-app-settings
  1. Add the service provider the providers array in your config/app.php file.
'A2Way\LaravelAppSettings\LaravelAppSettingsServiceProvider',
  1. Publish the migration file.
php artisan vendor:publish --provider="A2Way\LaravelAppSettings\LaravelAppSettingsServiceProvider"
  1. Run the migration.
php artisan migrate
  1. Use.
php artisan tinker
>>>A2Way\LaravelAppSettings\AppSettings::set('hello', 'world');
=>true
>>> A2Way\LaravelAppSettings\AppSettings::get('hello');
=> "world"