PHPackages                             kabbouchi/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. kabbouchi/laravel-settings

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

kabbouchi/laravel-settings
==========================

Advanced Settings Manager for Laravel

0.1.0(6y ago)150MITPHPPHP ^7.1

Since Jul 31Pushed 6y ago1 watchersCompare

[ Source](https://github.com/KABBOUCHI/laravel-settings)[ Packagist](https://packagist.org/packages/kabbouchi/laravel-settings)[ Docs](https://github.com/kabbouchi/laravel-settings)[ RSS](/packages/kabbouchi-laravel-settings/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Advanced Settings Manager for Laravel
=====================================

[](#advanced-settings-manager-for-laravel)

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

[](#installation)

You can install the package via composer:

```
composer require kabbouchi/laravel-settings
```

Publish its assets:

```
php artisan vendor:publish --tag=laravel-settings-components
php artisan vendor:publish --tag=laravel-settings-migrations
```

Register the vue component:

```
require('./bootstrap');

window.Vue = require('vue');

+import SettingsManager from './components/laravel-settings/SettingsManager.vue';

+Vue.component('settings-manager', SettingsManager);

const app = new Vue({
    el: '#app'
});
```

Add the `settings-manager` in your blade file

```
@extends('layouts.app')

@section('content')

@endsection
```

Usage (in AppServiceProvider)
-----------------------------

[](#usage-in-appserviceprovider)

```
Settings::auth(function () {
    return auth()->check();
});

Settings::languages(function () {
    return ['en' => 'English', 'ar' => 'Arabic'];
});

Settings::fields(function (Request $request) {
    return [
        Group::make('General', function () {
            return [
                Text::make('Site Name')
                    ->setTranslatable(true)
                    ->help('lorem ipsum....'),
                TextArea::make('Site Description')->setTranslatable(true),
            ];
        }),
        Group::make('Contact Us', function () {
            return [
                Text::make('Phone Number', 'phone')
            ];
        })->setKey('contact-us')
    ];
});
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

License
-------

[](#license)

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

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

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

2477d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/262a11f6a501bc3542b512aa3793e586f1162e8b300161824f1e13d425fa1bf3?d=identicon)[KABBOUCHI](/maintainers/KABBOUCHI)

---

Top Contributors

[![KABBOUCHI](https://avatars.githubusercontent.com/u/9212274?v=4)](https://github.com/KABBOUCHI "KABBOUCHI (33 commits)")

---

Tags

Settingslaravel-settingskabbouchi

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-settings

Store your application settings

1.5k5.9M72](/packages/spatie-laravel-settings)[akaunting/laravel-setting

Persistent settings package for Laravel

495805.1k7](/packages/akaunting-laravel-setting)[outl1ne/nova-settings

A Laravel Nova tool for editing custom settings using native Nova fields.

296883.2k3](/packages/outl1ne-nova-settings)[chillerlan/php-settings-container

A container class for immutable settings objects. Not a DI container.

3427.3M21](/packages/chillerlan-php-settings-container)[codeigniter4/settings

Settings library for CodeIgniter 4

93499.3k24](/packages/codeigniter4-settings)[jbtronics/settings-bundle

A symfony bundle to easily create typesafe, user-configurable settings for symfony applications

9546.7k2](/packages/jbtronics-settings-bundle)

PHPackages © 2026

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