PHPackages                             adminarchitect/options - 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. [Admin Panels](/categories/admin)
4. /
5. adminarchitect/options

ActiveLibrary[Admin Panels](/categories/admin)

adminarchitect/options
======================

Admin Architect - Settings Module. Package provide easy way to load and store options from/in database

v2.2.0(5y ago)41.8k↓87.5%

Since Feb 22Compare

[ Source](https://github.com/adminarchitect/options)[ Packagist](https://packagist.org/packages/adminarchitect/options)[ RSS](/packages/adminarchitect-options/feed)WikiDiscussions Synced today

READMEChangelog (10)DependenciesVersions (14)Used By (0)

Admin Architect - Options module
================================

[](#admin-architect---options-module)

adminarchitect/options provides the way to store/read key =&gt; value options to/from database.

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

[](#installation)

`Note:` this is not standalone package, it can be used only in conjunction with `Admin Architect` (`http://adminarchitect.com`) package.

Install adminarchitect/options module by running:

```
composer require adminarchitect/options

```

register Options service provider by adding it to the app/config.php `providers` section:

```
'providers' => [
	...
	Terranet\Options\ServiceProvider::class
	...
]

```

Note! `Terranet\Options\ServiceProvider::class` should be registered BEFORE `Terranet\Administrator\ServiceProvider::class`.

now you can publish the whole package resources by running:

```
php artisan vendor:publish [--provider="Terranet\\Options\\ServiceProvider"]

```

Modules
-------

[](#modules)

To create new Settings module, run:

```
php artisan administrator:resource:settings

```

`Settings` module will be created into the `app\Http\Terranet\Administrator\Modules` directory.

Routes
------

[](#routes)

Routes become available at `app\Http\Terranet\Options\routes.php`.

Migrations
----------

[](#migrations)

Create migration for the options table:

```
php artisan options:table

```

this will create the migration file inside of `database/migrations` directory...

Run migration:

```
php artisan migrate

```

Optionaly you can create new options for your business:

```
php artisan options:make

```

Types
-----

[](#types)

Options module supports all know types by Admin Architect: select, boolean, text, textarea, etc... So for example the boolean key may look like:

```
public function form()
{
    return array_merge(
        $this->scaffoldForm(),
        [
            'ssl' => ['type' => 'boolean', 'label' => 'Use SSL'],
        ]
    );
}

```

*Enjoy!*

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 84% 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

Every ~147 days

Recently: every ~319 days

Total

13

Last Release

2015d ago

Major Versions

v1.3.0 → v2.0.02017-08-18

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2834683?v=4)[Terzi Eduard](/maintainers/endihunter)[@endihunter](https://github.com/endihunter)

---

Top Contributors

[![endihunter](https://avatars.githubusercontent.com/u/2834683?v=4)](https://github.com/endihunter "endihunter (21 commits)")[![vitalyrotari](https://avatars.githubusercontent.com/u/124706?v=4)](https://github.com/vitalyrotari "vitalyrotari (3 commits)")[![viurciuc](https://avatars.githubusercontent.com/u/43541143?v=4)](https://github.com/viurciuc "viurciuc (1 commits)")

---

Tags

laravelSettingsoptionslaravel-adminlaravel-settingslaravel-optionsadmin architectlaravel backend panellaravel administration framework

### Embed Badge

![Health badge](/badges/adminarchitect-options/health.svg)

```
[![Health](https://phpackages.com/badges/adminarchitect-options/health.svg)](https://phpackages.com/packages/adminarchitect-options)
```

###  Alternatives

[lokielse/laravel-admin-generator

An Admin Panel Generator for Laravel 5

712.0k](/packages/lokielse-laravel-admin-generator)[printnow/laravel-admin

Dcat admin 永久分叉版 / 支持 Laravel 10-13, PHP 版本限制 &gt;= 8.1（支持 PHP 8.5）

462.6k](/packages/printnow-laravel-admin)[larasnap/laravel-admin

Laravel Admin Panel

221.4k](/packages/larasnap-laravel-admin)

PHPackages © 2026

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