A package that allows saving persistent settings to either JSON or database in Laravel 5
takeawaytown/laravel-settings is a Laravel package for a package that allows saving persistent settings to either json or database in laravel 5.
It currently has 0 GitHub stars and 29 downloads on Packagist (latest version 1.0.3).
Install it with composer require takeawaytown/laravel-settings.
Discover more Laravel packages by takeawaytown
or browse all Laravel packages to compare alternatives.
Last updated
Laravel 5.x persistent settings using Database and/or JSON
Require this package with composer :
composer require takeawaytown/laravel-settings
Register the ServiceProvider to the providers array in config/app.php
TakeawayTown\LaravelSettings\SettingsServiceProvider::class,
Add an alias for the facade to aliases array in your config/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
Anlutro Laravel Settings: anlutro/laravel-settings