PHPackages                             signifly/nova-progressbar-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. signifly/nova-progressbar-card

AbandonedArchivedLibrary

signifly/nova-progressbar-card
==============================

A Laravel Nova card with a progress bar

v0.2.1(6y ago)018.4k↓25.8%MITVuePHP &gt;=7.1.0

Since Sep 27Pushed 6y ago3 watchersCompare

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

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

Nova ProgressBar Card
---------------------

[](#nova-progressbar-card)

[![Latest Version on Packagist](https://camo.githubusercontent.com/aec5924436cf02643b6b7f305b1fe3c8a78eb13e398bd044ca644f485361b515/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7369676e69666c792f6e6f76612d70726f67726573736261722d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/nova-progressbar-card)[![Total Downloads](https://camo.githubusercontent.com/94487f059ca0270a147c4659f73861709d47dca21522037c10131f10f8e761d7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7369676e69666c792f6e6f76612d70726f67726573736261722d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/nova-progressbar-card)[![License](https://camo.githubusercontent.com/a3fbc6c217d7014e1cbdc9dbda5c39c5f5b909427c0a2b62471ccb3df9d505b1/68747470733a2f2f706f7365722e707567782e6f72672f7369676e69666c792f6e6f76612d70726f67726573736261722d636172642f6c6963656e7365)](https://packagist.org/packages/signifly/nova-progressbar-card)

This package allows you to add progressbar cards to your resources and dashboards in [Nova](https://nova.laravel.com).

[![Example](https://github.com/signifly/nova-progressbar-card/raw/master/screenshot.png)](https://github.com/signifly/nova-progressbar-card/blob/master/screenshot.png)

#### DISCLAIMER:

[](#disclaimer)

This package is still work in progress. Feel free to help improve it.

- [Requirements](#requirements)
- [Installation](#installation)
- [Basic Usage](#basic-usage)
- [Advanced Options](#advanced-options)

---

Requirements
------------

[](#requirements)

- [Laravel v5.8.\*](https://laravel.com/docs/5.8)
- [Laravel Nova v2.\*](https://nova.laravel.com/docs/2.0/)

---

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

[](#installation)

Just run:

```
composer require signifly/nova-progressbar-card
```

After this the setup will be complete and you can use the components listed here.

---

Basic Usage
-----------

[](#basic-usage)

```
// in App\Nova\Product
...
use Signifly\Nova\Cards\ProgressBar\ProgressBar;
...

/**
 * Get the cards available for the request.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return array
 */
public function cards(Request $request)
{
    return [
        (new ProgressBar)->options(['title' => 'Translations', 'percentage' => 0.5]);
    ];
}
```

---

Advanced Options
----------------

[](#advanced-options)

### Custom color

[](#custom-color)

```
public function cards(Request $request)
{
    return [
        (new ProgressBar)->options([
            'title' => 'Translations',
            'percentage' => 0.5,
            'color' => '#123456',
        ]);
    ];
}
```

### Animate Bar Color A -&gt; B

[](#animate-bar-color-a---b)

```
public function cards(Request $request)
{
    return [
        (new ProgressBar)->options([
            'title' => 'Translations',
            'percentage' => 0.5,
            'colorFrom' => '#aaa',
            'colorTo' => '#bbb',
            'animateColor' => true,
        ]);
    ];
}
```

### Stroke Width

[](#stroke-width)

```
public function cards(Request $request)
{
    return [
        (new ProgressBar)->options([
            'title' => 'Translations',
            'percentage' => 0.5,
            'strokeWidth' => 8,
        ]);
    ];
}
```

### Semi Circle Type Progress Bar

[](#semi-circle-type-progress-bar)

```
public function cards(Request $request)
{
    return [
        (new ProgressBar)->options([
            'title' => 'Translations',
            'percentage' => 0.5,
            'type' => 'semi-circle',
        ]);
    ];
}
```

Feel free to come with suggestions for improvements.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity44

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

Every ~2 days

Total

2

Last Release

2423d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/cd06d3bd4452ca3ce5c956b4c0bcb1240ca692f590bc4cdabe104fd07156e0bf?d=identicon)[signifly](/maintainers/signifly)

---

Top Contributors

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

---

Tags

laravelcardprogressbarnova

### Embed Badge

![Health badge](/badges/signifly-nova-progressbar-card/health.svg)

```
[![Health](https://phpackages.com/badges/signifly-nova-progressbar-card/health.svg)](https://phpackages.com/packages/signifly-nova-progressbar-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)
