PHPackages                             ericlagarda/nova-settings-card - 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. ericlagarda/nova-settings-card

ActiveLibrary

ericlagarda/nova-settings-card
==============================

Settings Card for Laravel Nova.

v1.2(6y ago)88.8k↓100%3[2 issues](https://github.com/Krato/NovaSettingsCard/issues)[18 PRs](https://github.com/Krato/NovaSettingsCard/pulls)MITPHPPHP &gt;=7.1.0

Since Nov 14Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Krato/NovaSettingsCard)[ Packagist](https://packagist.org/packages/ericlagarda/nova-settings-card)[ RSS](/packages/ericlagarda-nova-settings-card/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (1)Versions (21)Used By (0)

Nova Settings Card
==================

[](#nova-settings-card)

Nova card to add options to your website. To store data [akaunting/setting](https://github.com/akaunting/setting) is used.

You can attach the card to any [Nova Dashboard](https://nova.laravel.com/docs/2.0/customization/dashboards.html#default-dashboard). Can be used in multiple dashboard or in any resource.

The information is displayed in tabs.

If you want to use a KeyValue field use `resolveUsing() method to format the values:

```
KeyValue::make('Meta')->resolveUsing(function ($value) {
	return json_decode($value);
})
```

[![cover](https://user-images.githubusercontent.com/74367/68877274-17e05f00-0706-11ea-9690-2485ba896c41.png)](https://user-images.githubusercontent.com/74367/68877274-17e05f00-0706-11ea-9690-2485ba896c41.png)

Instructions
------------

[](#instructions)

1. Install Package

    ```
    composer require ericlagarda/nova-settings-card
    ```
2. Publish [akaunting/setting](https://github.com/akaunting/setting) config and migrations

    ```
    php artisan vendor:publish --tag=setting
    ```
3. Migrate settings table

    ```
    php artisan migrate
    ```
4. Add SettingsCard to your own Nova Dashboard

    Available methods:

    - **fields** -&gt; Tabbed nova fields
    - **name** -&gt; Card name

    ```
    use EricLagarda\SettingsCard\SettingsCard;

    /**
     * Get the cards for the dashboard.
     *
     * @return array
     */
    public function cards()
    {
        return [
            (new SettingsCard)->fields([
                'General' => [
                    Text::make('Web Name'),
                    Boolean::make('Activated'),
                    Trix::make('Site Description'),
                    Image::make('Logo')->disk('s3'),
                    KeyValue::make('Meta')->resolveUsing(function ($value) {
                        return json_decode($value);
                    }),
                ],
                'Scripts' => [
                    Code::make('Header Scripts')->language('javascript'),
                    Code::make('Footer Scripts')->language('javascript'),
                ],
                'Styles' => [
                    Code::make('Header Styles')->language('sass'),
                    Code::make('Footer Styles')->language('sass'),
                ],
            ])->name('My settings card'),
        ];

        ...
    }
    ```

    You can set the name of the card with `name()` functions. Default to `Settings`.

Localization
------------

[](#localization)

```
"Settings": "Opciones",
"Save settings": "Guardar opciones",
"Settings saved! - Reloading page.": "¡opciones guardadas! - Recargando la página..."
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity61

Established project with proven stability

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 ~0 days

Total

3

Last Release

2367d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3865030b01e29299f1f6837852ba6a70fea204ceb46e58a917d4e4398268800f?d=identicon)[Krato1](/maintainers/Krato1)

---

Tags

cardlaravelnovaoptionssettingslaravelSettingscardnova

### Embed Badge

![Health badge](/badges/ericlagarda-nova-settings-card/health.svg)

```
[![Health](https://phpackages.com/badges/ericlagarda-nova-settings-card/health.svg)](https://phpackages.com/packages/ericlagarda-nova-settings-card)
```

###  Alternatives

[outl1ne/nova-detached-filters

This Laravel Nova package allows you to detach filters from the filter dropdown

64343.5k](/packages/outl1ne-nova-detached-filters)[nrml-co/nova-big-filter

A nice looking filter menu thats always open.

35310.9k](/packages/nrml-co-nova-big-filter)[ericlagarda/nova-text-card

A custom card for Laravel Nova to show Text in cards with some good options

20388.6k2](/packages/ericlagarda-nova-text-card)[awesome-nova/filter-card

A Laravel Nova card.

25126.1k](/packages/awesome-nova-filter-card)

PHPackages © 2026

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