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

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

signifly/nova-progressbar-field
===============================

A Laravel Nova progress bar field.

v0.0.2(6y ago)5422.0k↑60%3[1 issues](https://github.com/signifly/nova-progressbar-field/issues)MITVuePHP &gt;=7.1.0

Since Sep 27Pushed 4y ago2 watchersCompare

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

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

Nova ProgressBar Field
======================

[](#nova-progressbar-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1c09a4d2bafd42e2e5425084398fdaac562a0451c501a8608521164aa79c695c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7369676e69666c792f6e6f76612d70726f67726573736261722d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/nova-progressbar-field)[![Total Downloads](https://camo.githubusercontent.com/23f9603fccf174f1ddf068fd2263baef826ad6761f8d5923a47ac94308dd4b28/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7369676e69666c792f6e6f76612d70726f67726573736261722d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/nova-progressbar-field)[![License](https://camo.githubusercontent.com/7cf7dad928d051c08a4a9f018f20a9cc683810b2f4d48415e3a483e7c60845d4/68747470733a2f2f706f7365722e707567782e6f72672f7369676e69666c792f6e6f76612d70726f67726573736261722d6669656c642f6c6963656e7365)](https://packagist.org/packages/signifly/nova-progressbar-field)

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

It basically takes a field with a decimal value between 0 and 1 and shows it as a percentage progress bar.

It edits like a text field.

[![index example](https://github.com/signifly/nova-progressbar-field/raw/master/img/screenshot-index.png)](https://github.com/signifly/nova-progressbar-field/blob/master/img/screenshot-index.png)

[![detail example](https://github.com/signifly/nova-progressbar-field/raw/master/img/screenshot-detail1.png)](https://github.com/signifly/nova-progressbar-field/blob/master/img/screenshot-detail1.png)

[![form example](https://github.com/signifly/nova-progressbar-field/raw/master/img/screenshot-form.png)](https://github.com/signifly/nova-progressbar-field/blob/master/img/screenshot-form.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-field
```

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

---

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

[](#basic-usage)

```
// in App\Nova\User
...
use signifly\Nova\Fields\ProgressBar\ProgressBar;
...

/**
 * Get the fields available for the request.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return array
 */
public function fields(Request $request)
{
    return [
        ProgressBar::make('Awesomeness'),
    ];
}
```

---

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

[](#advanced-options)

### Custom color

[](#custom-color)

```
public function cards(Request $request)
{
    return [
        ProgressBar::make('Awesomeness')
            ->options([
                'color' => '#FFEA82',
            ]),
    ];
}
```

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

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

```
public function cards(Request $request)
{
    return [
        ProgressBar::make('Awesomeness')
            ->options([
                'fromColor' => '#FFEA82',
                'toColor' => '#40BF55',
                'animateColor' => true,
            ]),
    ];
}
```

Feel free to come with suggestions for improvements.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity42

Moderate usage in the ecosystem

Community10

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

2425d 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 (10 commits)")

---

Tags

laravelfieldsprogressbarnova

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/signifly-nova-progressbar-field/health.svg)](https://phpackages.com/packages/signifly-nova-progressbar-field)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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