robiussani152 / settings
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.
v1.0.2
2019-10-19 17:51 UTC
This package is auto-updated.
Last update: 2025-05-20 07:24:32 UTC
README
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.
Getting Started
1. Install
Run the following command:
composer require robiussani152/settings
2. Register (for Laravel < 5.5)
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,
Usage
You can use the facade Setting::get('foo')
Facade
Settings::get('foo'); Settings::set('foo', 'bar'); Settings::forget('foo'); $settings = Settings::all();
License
The MIT License (MIT). Please see LICENSE for more information.