laravel-settings maintained by takeawaytown
Description
A package that allows saving persistent settings to either JSON or database in Laravel 5
Author
Last update
2017/11/13 12:05
(dev-master)
License
Downloads
29
Laravel Settings
Laravel 5.x persistent settings using Database and/or JSON
Install process
-
Require this package with composer :
composer require takeawaytown/laravel-settings -
Register the ServiceProvider to the
providersarray inconfig/app.phpTakeawayTown\LaravelSettings\SettingsServiceProvider::class, -
Add an alias for the facade to
aliasesarray in yourconfig/app.php'Settings' => TakeawayTown\LaravelSettings\Facades\Settings::class, -
Publish the config and migration files:
php artisan vendor:publish --provider="TakeawayTown\LaravelSettings\SettingsServiceProvider" --force
Change config/settings.php according to your needs.
Create the settings table.
php artisan migrate
Credits to main author
Anlutro Laravel Settings: anlutro/laravel-settings