PHPackages                             musa11971/nova-status-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. [Admin Panels](/categories/admin)
4. /
5. musa11971/nova-status-card

AbandonedArchivedLibrary[Admin Panels](/categories/admin)

musa11971/nova-status-card
==========================

Display a status card on your Laravel Nova dashboard.

1.0(5y ago)1137[1 issues](https://github.com/musa11971/nova-status-card/issues)MITPHPPHP &gt;=7.1.0

Since Apr 29Pushed 5y ago1 watchersCompare

[ Source](https://github.com/musa11971/nova-status-card)[ Packagist](https://packagist.org/packages/musa11971/nova-status-card)[ RSS](/packages/musa11971-nova-status-card/feed)WikiDiscussions master Synced 3d ago

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

[![](.github/package.png)](.github/package.png)

[![Latest version on packagist](https://camo.githubusercontent.com/d86d38eb0488a227f7d612b7fe5a787fc536bd8bca2a5b9c54fd560c0a0641f9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d75736131313937312f6e6f76612d7374617475732d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/musa11971/nova-status-card)[![Total downloads](https://camo.githubusercontent.com/69248eb323ae97449fe3316eb48e5378e3b06e011bf2d69d4aab9612424a53ce/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d75736131313937312f6e6f76612d7374617475732d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/musa11971/nova-status-card)

Display useful status information
=================================

[](#display-useful-status-information)

This Laravel Nova package allows you to easily display useful status information on your Nova dashboard.

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

[](#installation)

You can install the package via composer:

```
composer require musa11971/nova-status-card
```

Usage
-----

[](#usage)

Add the card to your dashboard using `NovaServiceProvider`.

```
class NovaServiceProvider extends NovaApplicationServiceProvider
{
    /**
     * Get the cards that should be displayed on the default Nova dashboard.
     *
     * @return array
     */
    protected function cards()
    {
        return [
            NovaStatusCard::make()
                ->title('Server Status')
                ->items([
                    NovaStatusItem::make('Database Usage')
                        ->percentage()
                        ->value(function() {
                            // Calculate value...
                            return 55.43;
                        }),

                    NovaStatusItem::make('Redis Server')
                        ->statusIndicator()
                        ->value(function($value) {
                            // Perform check...
                            return $value->ok();
                        })
                ])
        ];
    }
}
```

Which produces the following:
[![](.github/example_1.png)](.github/example_1.png)

Types
-----

[](#types)

There are currently 3 types of status items.

### String

[](#string)

```
NovaStatusItem::make('Department Condition')
    ->string()
    ->value(Department::first()->condition)
```

[![](.github/example_2.png)](.github/example_2.png)

### Percentage

[](#percentage)

```
NovaStatusItem::make('Database Usage')
    ->percentage()
    ->value(function() {
        // Calculate value...
        return 55.43;
    })
```

[![](.github/example_3.png)](.github/example_3.png)

### Status indicator

[](#status-indicator)

```
NovaStatusItem::make('MySQL Server Status')
    ->statusIndicator()
    ->value(function($value) {
        return $value->ok();
        // or:
        // $value->danger();
        // $value->risky();
        // $value->unknown();
    })
```

[![](.github/example_4.png)](.github/example_4.png)

Status indicators also support passing a hint, which will be display as the HTML 'title' attribute. Useful for displaying additional information.

```
NovaStatusItem::make('MySQL Server Status')
    ->statusIndicator()
    ->value(function($value) {
        return $value->risky()->hint('Server responded slowly.');
    })
```

[![](.github/example_5.png)](.github/example_5.png)

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

[](#contributing)

Pull requests are welcomed.

### Security

[](#security)

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

Credits
-------

[](#credits)

Credits go to [musa11971](https://github.com/musa11971) for creating and maintaining the package.

Special thanks

- .. to [all contributors](../../contributors) for contributing to the project.

Support me
----------

[](#support-me)

I am a full-time software engineering student and work on this package in my free time. If you find the package useful, please consider making a [donation](https://www.paypal.me/musa11971)! Every little bit helps. 💜

License
-------

[](#license)

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

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

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

1839d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c3104e44e9879242659fa0c6717fa6d01be9fcbb90a33d0c49c1ea1c6348332?d=identicon)[musa11971](/maintainers/musa11971)

---

Top Contributors

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

---

Tags

laravellaravel-novastatus-pagelaravelstatusnova

### Embed Badge

![Health badge](/badges/musa11971-nova-status-card/health.svg)

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

###  Alternatives

[benjacho/belongs-to-many-field

belongsToMany nova representation in field.

158811.4k1](/packages/benjacho-belongs-to-many-field)[pdmfc/nova-action-button

A Laravel Nova field to run actions.

37733.0k1](/packages/pdmfc-nova-action-button)[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)[ebess/nova-collapsible-sidebar

A collapsible sidebar for Laravel Nova.

32313.2k](/packages/ebess-nova-collapsible-sidebar)

PHPackages © 2026

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