Skip to content

tahirrasheed208/laravel-settings

Repository files navigation

Settings package for Laravel

Latest Version on Packagist Build Status Total Downloads

This package allows you to save settings in DB & Cache. You can use helper function to get settings value anywhere within laravel.

  • Database support
  • Helper function
  • Cache support

Getting Started

1. Install

Run the following command:

composer require tahirrasheed208/laravel-settings

2. Publish

Publish config file.

php artisan vendor:publish --provider="TahirRasheed\LaravelSettings\SettingsServiceProvider" --tag=settings-config

3. Preparing the database

You need to publish the migration to create the media table:

php artisan vendor:publish --provider="TahirRasheed\LaravelSettings\SettingsServiceProvider" --tag=settings-migration

After that, you need to run migrations.

php artisan migrate

4. Configure

You can change the options of your app from config/settings.php file

Usage

Helper

setting()->get('foo');
setting()->get('foo', 'default');
setting()->put('foo', 'bar');
setting()->delete('foo');

Facade

Setting::get('foo');
Setting::get('foo', 'default');
Setting::put('foo', 'bar');
Setting::delete('foo');

Testing

./vendor/bin/phpunit

Changelog

Please see Releases for more information what has changed recently.

Contributing

Pull requests are more than welcome. You must follow the PSR coding standards.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

License

The MIT License (MIT). Please see LICENSE for more information.