This package is for managing most basic settings in your laravel application like site title, site logo etc. You can add your custom settings using this package.
Run the following command:
composer require robiussani152/settings
Register the service provider in config/app.php
Robiussani152\Settings\SettingServiceProvider::class,
Add alias if you want to use the facade.
'Settings' => Robiussani152\Settings\Facades\Settings::class,
You can use the facade Setting::get('foo')
Settings::get('foo');
Settings::set('foo', 'bar');
Settings::forget('foo');
$settings = Settings::all();
The MIT License (MIT). Please see LICENSE for more information.