PHPackages                             mishajib/laravel-settings - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. mishajib/laravel-settings

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

mishajib/laravel-settings
=========================

This package manage your site basic settings like - site title, logo etc. You can also add your custom setting using this package.

v1.0(4y ago)1403MITPHP

Since Sep 9Pushed 4y ago1 watchersCompare

[ Source](https://github.com/mishajib/laravel-settings)[ Packagist](https://packagist.org/packages/mishajib/laravel-settings)[ RSS](/packages/mishajib-laravel-settings/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Laravel Settings By MI SHAJIB
=============================

[](#laravel-settings-by-mi-shajib)

[![Latest Stable Version](https://camo.githubusercontent.com/309dd63fc98528ddadd4c3e07b5e22324c7900a3f73fd1cbc552c89b38a8b1a6/68747470733a2f2f706f7365722e707567782e6f72672f6d697368616a69622f6c61726176656c2d73657474696e67732f76)](//packagist.org/packages/mishajib/laravel-settings)[![License](https://camo.githubusercontent.com/27bfbcfb87964d27999a14028071f93c570acf7212c6058c6ad8106ee615d866/68747470733a2f2f706f7365722e707567782e6f72672f6d697368616a69622f6c61726176656c2d73657474696e67732f6c6963656e7365)](//packagist.org/packages/mishajib/laravel-settings)[![Total Downloads](https://camo.githubusercontent.com/27c6897a28e2998a61e6c2a5a59c7fb6271f2db74217e73352f245295e177150/68747470733a2f2f706f7365722e707567782e6f72672f6d697368616a69622f6c61726176656c2d73657474696e67732f646f776e6c6f616473)](//packagist.org/packages/mishajib/laravel-settings)

---

We use settings in every application. Which we have to do again and again in every application. For this I have created a package through which you can create settings very quickly. You can also make the settings by running the command if you want.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require mishajib/laravel-settings
```

Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

### Laravel without auto-discovery:

[](#laravel-without-auto-discovery)

If you don't use auto-discovery, add the ServiceProvider to the `$providers` array in config file `config/app.php`

```
MISHAJIB\Settings\SettingServiceProvider::class,
```

If you want to use the facade to log messages, add this to your facades in app.php:

```
'LaravelSetting' => MISHAJIB\Settings\Facades\LaravelSettings::class,
```

You can also publish vendor and run the migrations with:

```
php artisan vendor:publish --provider="MISHAJIB\Settings\SettingServiceProvider"
php artisan migrate
```

This is the contents of the published config file:

Usage
-----

[](#usage)

```
use MISHAJIB\Settings\Facades\LaravelSettings;

LaravelSettings::set('setting_key', 'setting_value'); // create or update
LaravelSettings::get('setting_key'); // get the setting
LaravelSettings::forget('setting_key'); // remove the setting
LaravelSettings::all(); // get all settings
```

Commands
--------

[](#commands)

```
php artisan misetting:create
php artisan misetting:update
php artisan misetting:forget
php artisan misetting:all
```

### Create Command

[](#create-command)

This command will create setting and save into settings table. This command take two arguments - setting name and setting value. Setting name should be string, can't use space or '-'. Also setting value should be string. Setting key example - site\_title, logo etc. Just write command and hit enter then it will ask for arguments. After giving arguments setting will be created.

```
php artisan misetting:create
```

### Update Command

[](#update-command)

This command will update setting and save into settings table. This command take two arguments - setting name and setting value. Setting name should be string, can't use space or '-'. Also setting value should be string. Setting key example - site\_title, logo etc. Just write command and hit enter then it will ask for arguments. After giving arguments setting will be updated.

```
php artisan misetting:update
```

### Forget Command

[](#forget-command)

This command will delete setting from settings table. This command take one argument - setting name/key. Just write command and hit enter then it will ask for argument. After give the argument setting will be deleted.

```
php artisan misetting:forget
```

### Show Command

[](#show-command)

This command will show all setting from settings table. Just write command and hit enter and get all settings.

```
php artisan misetting:all
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1708d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/30234790?v=4)[MI SHAJIB](/maintainers/mishajib)[@mishajib](https://github.com/mishajib)

---

Top Contributors

[![mishajib](https://avatars.githubusercontent.com/u/30234790?v=4)](https://github.com/mishajib "mishajib (7 commits)")

---

Tags

laravelSettingsapplicationsettinglaravel-settings

### Embed Badge

![Health badge](/badges/mishajib-laravel-settings/health.svg)

```
[![Health](https://phpackages.com/badges/mishajib-laravel-settings/health.svg)](https://phpackages.com/packages/mishajib-laravel-settings)
```

###  Alternatives

[akaunting/laravel-setting

Persistent settings package for Laravel

495805.1k7](/packages/akaunting-laravel-setting)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
